Skip to content

Commit

Permalink
Deploying to gh-pages from @ 7748312 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
dgkf committed Aug 3, 2024
1 parent c7a2c1d commit 6320965
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions assets/wasm/r/r.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ export function wasm_parse_errors(args: any, input: string): (ParseError)[];
export function wasm_highlight(args: any, input: string): any[];
/**
*/
export enum Experiment {
TailCalls = 0,
RestArgs = 1,
}
/**
*/
export enum Localization {
En = 0,
Es = 1,
Expand All @@ -38,12 +44,6 @@ export enum Localization {
Emoji = 5,
}
/**
*/
export enum Experiment {
TailCalls = 0,
RestArgs = 1,
}
/**
* Run the R REPL
*/
export class Cli {
Expand Down
4 changes: 2 additions & 2 deletions assets/wasm/r/r.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,10 +286,10 @@ function handleError(f, args) {
}
/**
*/
export const Localization = Object.freeze({ En:0,"0":"En",Es:1,"1":"Es",Zh:2,"2":"Zh",De:3,"3":"De",Pirate:4,"4":"Pirate",Emoji:5,"5":"Emoji", });
export const Experiment = Object.freeze({ TailCalls:0,"0":"TailCalls",RestArgs:1,"1":"RestArgs", });
/**
*/
export const Experiment = Object.freeze({ TailCalls:0,"0":"TailCalls",RestArgs:1,"1":"RestArgs", });
export const Localization = Object.freeze({ En:0,"0":"En",Es:1,"1":"Es",Zh:2,"2":"Zh",De:3,"3":"De",Pirate:4,"4":"Pirate",Emoji:5,"5":"Emoji", });

const CliFinalization = (typeof FinalizationRegistry === 'undefined')
? { register: () => {}, unregister: () => {} }
Expand Down
Binary file modified assets/wasm/r/r_bg.wasm
Binary file not shown.
20 changes: 10 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<title>dgkf/R</title>
<meta name="description" content="A reimagining of R"/>
<meta name="application-name" content="R"/>
<link rel="manifest" href="manifest.json"/>
<link rel="shortcut icon" type="image/svg+xml" href="assets/img/favicon.svg">
<link rel="manifest" href="./manifest.json"/>
<link rel="shortcut icon" type="image/svg+xml" href="./assets/img/favicon.svg">

<meta name="viewport" content="viewport-fit=cover width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<meta name="theme-color" content="#111">
Expand All @@ -16,20 +16,20 @@
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>

<link rel="icon" type="image/svg+xml" size="any" href="assets/img/favicon.svg"/>
<link rel="apple-touch-icon" type="image/png" sizes="256x256" href="assets/img/favicon.svg"/>
<link rel="icon" type="image/svg+xml" size="any" href="./assets/img/favicon.svg"/>
<link rel="apple-touch-icon" type="image/png" sizes="256x256" href="./assets/img/favicon.svg"/>
<meta name="msapplication-TileColor" content="#111"/>
<meta name="msapplication-TileImage" content="assets/img/favicon.svg"/>
<meta name="msapplication-TileImage" content="./assets/img/favicon.svg"/>

<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/theme.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/theme.css">

<script id="promptjs" src="assets/prompt/src.js"></script>
<link rel="stylesheet" href="assets/prompt/style.css">
<script id="promptjs" src="./assets/prompt/src.js"></script>
<link rel="stylesheet" href="./assets/prompt/style.css">
</head>
<body>
<script type="module">
import init, * as r from "assets/wasm/r/r.js";
import init, * as r from "./assets/wasm/r/r.js";

const params = new URLSearchParams(window.location.search);
const locale = params.get("locale") || "en";
Expand Down

0 comments on commit 6320965

Please sign in to comment.