├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .gitignore.travis ├── .nojekyll ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── CNAME ├── LICENSE ├── README.md ├── bin ├── bundle-templates.js └── check-bundle-size.js ├── config.json ├── favicon.ico ├── fonts ├── octicons.css ├── octicons │ ├── OSSREADME.json │ ├── README.md │ ├── octicons-animations.css │ ├── octicons-local.ttf │ ├── octicons.css │ ├── octicons.eot │ ├── octicons.less │ ├── octicons.scss │ ├── octicons.svg │ ├── octicons.ttf │ ├── octicons.woff │ └── sprockets-octicons.scss ├── roboto.css ├── roboto.ttf ├── seti-extra.css ├── seti-extra.woff ├── seti.css ├── seti.woff ├── zilla.css └── zilla.ttf ├── img ├── logo.png ├── wa.png └── web-assembly-icon-white-64px.png ├── index.html ├── jest-puppeteer.config.js ├── jest.e2e.config.json ├── lib ├── binaryen.LICENSE ├── binaryen.js ├── capstone.x86.min.js ├── clang-format.js ├── clang-format.wasm ├── fiddle.d.ts ├── ga.js ├── lib.es6.d.ts ├── require.js ├── showdown.min.js ├── twiggy_wasm_api.js ├── twiggy_wasm_api_bg.wasm ├── vendor_libs.sh ├── viz-lite.js ├── wabt.LICENSE └── wabt.js ├── misc └── arc-templates │ ├── arc_js │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ └── module.js │ ├── arc_rust │ ├── Cargo.toml │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── arc_module.rs │ │ ├── color.rs │ │ ├── lib.rs │ │ ├── module.js │ │ └── utils.rs │ ├── arc_rust_font │ ├── Cargo.toml │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── arc_module.rs │ │ ├── color.rs │ │ ├── lib.rs │ │ ├── module.js │ │ └── utils.rs │ ├── arc_rust_hello_world │ ├── Cargo.toml │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── arc_module.rs │ │ ├── color.rs │ │ ├── lib.rs │ │ ├── module.js │ │ └── utils.rs │ ├── arc_rust_jsconf_logo │ ├── Cargo.toml │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── arc_module.rs │ │ ├── color.rs │ │ ├── lib.rs │ │ ├── module.js │ │ └── utils.rs │ ├── arc_rust_random │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── arc_module.rs │ │ ├── browser.rs │ │ ├── color.rs │ │ ├── lib.rs │ │ ├── module.js │ │ └── utils.rs │ └── arc_wat │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ ├── module.js │ └── module.wat ├── notes ├── help.md └── notes.md ├── package.json ├── src ├── @types │ └── tar-js │ │ └── index.d.ts ├── actions │ ├── AppActions.ts │ └── ArcActions.ts ├── arc.ts ├── compilerServices │ ├── clangService.ts │ ├── index.ts │ ├── rustService.ts │ ├── sendRequest.ts │ ├── types.ts │ ├── utils.ts │ └── x86Service.ts ├── components │ ├── App.tsx │ ├── Binary.tsx │ ├── BrowserNotSupported.tsx │ ├── ControlCenter.tsx │ ├── DirectoryTree.tsx │ ├── EditFileDialog.tsx │ ├── ErrorBoundary.tsx │ ├── Header.tsx │ ├── Markdown.tsx │ ├── NewDirectoryDialog.tsx │ ├── NewFileDialog.tsx │ ├── NewProjectDialog.tsx │ ├── Problems.tsx │ ├── Sandbox.tsx │ ├── ShareDialog.tsx │ ├── Split.tsx │ ├── StatusBar.tsx │ ├── Toasts.tsx │ ├── Toolbar.tsx │ ├── UploadFileDialog.tsx │ ├── Viz.tsx │ ├── Widgets.tsx │ ├── Workspace.tsx │ ├── editor │ │ ├── Editor.tsx │ │ ├── Tabs.tsx │ │ ├── View.tsx │ │ ├── ViewTabs.tsx │ │ └── index.ts │ └── shared │ │ ├── Button.tsx │ │ └── Icons.tsx ├── config.ts ├── dispatcher.ts ├── errors.ts ├── gulpy.ts ├── index.tsx ├── languages │ ├── cton.ts │ ├── log.ts │ ├── rust.ts │ ├── wat.ts │ └── x86.ts ├── message.ts ├── models │ ├── Directory.ts │ ├── EventDispatcher.ts │ ├── File.ts │ ├── ModelRef.ts │ ├── Problem.ts │ ├── Project.ts │ ├── index.ts │ └── types.ts ├── monaco-controller.ts ├── monaco-dnd.ts ├── monaco-extra.ts ├── monaco-utils.ts ├── service.ts ├── stores │ └── AppStore.ts ├── util.ts ├── utils │ ├── Logger.ts │ ├── Template.ts │ ├── download.ts │ ├── fetchTemplates.ts │ ├── ga.ts │ ├── group.ts │ ├── registerLanguages.ts │ ├── registerTheme.ts │ ├── rewriteSources.ts │ ├── splitUtils.ts │ ├── taskRunner.ts │ └── zlib.ts └── worker.ts ├── stryker.conf.js ├── style ├── global.css ├── markdown.css ├── ref.css ├── split-pane.css └── theme.css ├── svg ├── close.svg ├── default_file.svg ├── default_folder.svg ├── default_folder_opened.svg ├── error-dark.svg ├── error.svg ├── favicon.psd ├── info-dark.svg ├── info.svg ├── wa-pp-black.svg ├── wa-pp-white.svg ├── wa-pp.svg ├── wa.svg ├── warning-dark.svg ├── warning.svg ├── web-assembly-logo-black.svg ├── web-assembly-logo-white.svg └── web-assembly-logo.svg ├── templates ├── empty_c │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── main.c │ │ ├── main.html │ │ └── main.js ├── empty_rust │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── main.html │ │ ├── main.js │ │ └── main.rs ├── empty_ts │ ├── README.md │ ├── assembly │ │ ├── main.ts │ │ └── tsconfig.json │ ├── gulpfile.js │ ├── package.json │ ├── setup.js │ └── src │ │ ├── main.html │ │ └── main.js ├── empty_wat │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── main.html │ │ ├── main.js │ │ └── main.wat ├── hello_world_c │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ │ ├── main.c │ │ ├── main.html │ │ └── main.js └── hello_world_rust │ ├── README.md │ ├── build.ts │ ├── package.json │ └── src │ ├── lib.rs │ ├── main.html │ └── main.js ├── test-preprocessor.js ├── test-setup.js ├── test-shim.js ├── tests ├── actions │ ├── AppActions │ │ └── AppActions.spec.ts │ └── ArcActions │ │ └── ArcActions.spec.ts ├── compilerServices │ ├── clangService.spec.ts │ ├── createCompilerService.spec.ts │ ├── rustService.spec.ts │ ├── sendRequest.spec.ts │ ├── utils.spec.ts │ └── x86Service.spec.ts ├── components │ ├── App │ │ ├── App.spec.tsx │ │ └── __snapshots__ │ │ │ └── App.spec.tsx.snap │ ├── Binary │ │ └── Binary.spec.tsx │ ├── BrowserNotSupported │ │ └── BrowserNotSupported.spec.tsx │ ├── Button │ │ └── Button.spec.tsx │ ├── ControlCenter │ │ └── ControlCenter.spec.tsx │ ├── DirectoryTree │ │ └── DirectoryTree.spec.tsx │ ├── EditFileDialog │ │ └── EditFileDialog.spec.tsx │ ├── Editor │ │ ├── EditorView.spec.tsx │ │ └── Monaco.spec.tsx │ ├── ErrorBoundary │ │ └── ErrorBoundary.spec.tsx │ ├── Header │ │ └── Header.spec.tsx │ ├── Markdown │ │ └── Markdown.spec.tsx │ ├── NewDirectoryDialog │ │ ├── NewDirectoryDialog.spec.tsx │ │ └── __snapshots__ │ │ │ └── NewDirectoryDialog.spec.tsx.snap │ ├── NewFileDialog │ │ ├── NewFileDialog.spec.tsx │ │ └── __snapshots__ │ │ │ └── NewFileDialog.spec.tsx.snap │ ├── NewProjectDialog │ │ ├── NewProjectDialog.spec.tsx │ │ ├── __snapshots__ │ │ │ └── NewProjectDialog.spec.tsx.snap │ │ └── templates.json │ ├── Problems │ │ └── Problems.spec.tsx │ ├── Sandbox │ │ └── Sandbox.spec.tsx │ ├── ShareDialog │ │ ├── ShareDialog.spec.tsx │ │ └── __snapshots__ │ │ │ └── ShareDialog.spec.tsx.snap │ ├── Split │ │ └── Split.spec.tsx │ ├── StatusBar │ │ └── StatusBar.spec.tsx │ ├── Tabs │ │ ├── Tab.spec.tsx │ │ └── Tabs.spec.tsx │ ├── Toast │ │ ├── Toasts.spec.tsx │ │ └── __snapshots__ │ │ │ └── Toasts.spec.tsx.snap │ ├── Toolbar │ │ └── Toolbar.spec.tsx │ ├── UploadFileDialog │ │ └── UploadFileDialog.spec.tsx │ ├── View │ │ └── View.spec.tsx │ ├── ViewTabs │ │ └── ViewTabs.spec.tsx │ ├── Viz │ │ └── Viz.spec.tsx │ ├── Widgets │ │ └── Widgets.spec.tsx │ ├── Workspace │ │ └── Workspace.spec.tsx │ └── icons │ │ └── icons.spec.tsx ├── e2e │ └── EmptyCProject.e2e.ts ├── languages │ ├── cton.spec.ts │ ├── log.spec.ts │ ├── rust.spec.ts │ ├── wat.spec.ts │ └── x86.spec.ts ├── services │ ├── Service.spec.ts │ └── ServiceWorker.spec.ts ├── stores │ └── AppStore │ │ └── AppStore.spec.ts ├── unit │ ├── Controller.spec.ts │ ├── DragAndDrop.spec.ts │ ├── EventDispatcher.spec.ts │ ├── FileType.spec.ts │ ├── Logger.spec.ts │ ├── ModelRef.spec.ts │ ├── Problem.spec.ts │ ├── Project.spec.ts │ ├── Template.spec.ts │ ├── arc.spec.ts │ ├── directory.spec.ts │ ├── file.spec.ts │ ├── gulpy.spec.ts │ ├── index.spec.tsx │ └── splitUtils.spec.ts └── utils │ ├── config.spec.ts │ ├── download.spec.ts │ ├── fetchTemplates.spec.ts │ ├── ga.spec.ts │ ├── group.spec.tsx │ ├── registerLanguages.spec.ts │ ├── registerTheme.spec.ts │ ├── rewriteSources.spec.tsx │ ├── service.spec.tsx │ ├── util.spec.ts │ └── zlib.spec.ts ├── tsconfig.json ├── tsconfig.test.json ├── tslint.json ├── web-assembly-icon-white-64px.png └── webpack.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore.travis: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/CNAME -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/README.md -------------------------------------------------------------------------------- /bin/bundle-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/bin/bundle-templates.js -------------------------------------------------------------------------------- /bin/check-bundle-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/bin/check-bundle-size.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/config.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/octicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons.css -------------------------------------------------------------------------------- /fonts/octicons/OSSREADME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/OSSREADME.json -------------------------------------------------------------------------------- /fonts/octicons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/README.md -------------------------------------------------------------------------------- /fonts/octicons/octicons-animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons-animations.css -------------------------------------------------------------------------------- /fonts/octicons/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons-local.ttf -------------------------------------------------------------------------------- /fonts/octicons/octicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons.css -------------------------------------------------------------------------------- /fonts/octicons/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons.eot -------------------------------------------------------------------------------- /fonts/octicons/octicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons.less -------------------------------------------------------------------------------- /fonts/octicons/octicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons.scss -------------------------------------------------------------------------------- /fonts/octicons/octicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons.svg -------------------------------------------------------------------------------- /fonts/octicons/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons.ttf -------------------------------------------------------------------------------- /fonts/octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/octicons.woff -------------------------------------------------------------------------------- /fonts/octicons/sprockets-octicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/octicons/sprockets-octicons.scss -------------------------------------------------------------------------------- /fonts/roboto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/roboto.css -------------------------------------------------------------------------------- /fonts/roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/roboto.ttf -------------------------------------------------------------------------------- /fonts/seti-extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/seti-extra.css -------------------------------------------------------------------------------- /fonts/seti-extra.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/seti-extra.woff -------------------------------------------------------------------------------- /fonts/seti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/seti.css -------------------------------------------------------------------------------- /fonts/seti.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/seti.woff -------------------------------------------------------------------------------- /fonts/zilla.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/zilla.css -------------------------------------------------------------------------------- /fonts/zilla.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/fonts/zilla.ttf -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/img/wa.png -------------------------------------------------------------------------------- /img/web-assembly-icon-white-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/img/web-assembly-icon-white-64px.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/index.html -------------------------------------------------------------------------------- /jest-puppeteer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/jest-puppeteer.config.js -------------------------------------------------------------------------------- /jest.e2e.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/jest.e2e.config.json -------------------------------------------------------------------------------- /lib/binaryen.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/binaryen.LICENSE -------------------------------------------------------------------------------- /lib/binaryen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/binaryen.js -------------------------------------------------------------------------------- /lib/capstone.x86.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/capstone.x86.min.js -------------------------------------------------------------------------------- /lib/clang-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/clang-format.js -------------------------------------------------------------------------------- /lib/clang-format.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/clang-format.wasm -------------------------------------------------------------------------------- /lib/fiddle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/fiddle.d.ts -------------------------------------------------------------------------------- /lib/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/ga.js -------------------------------------------------------------------------------- /lib/lib.es6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/lib.es6.d.ts -------------------------------------------------------------------------------- /lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/require.js -------------------------------------------------------------------------------- /lib/showdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/showdown.min.js -------------------------------------------------------------------------------- /lib/twiggy_wasm_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/twiggy_wasm_api.js -------------------------------------------------------------------------------- /lib/twiggy_wasm_api_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/twiggy_wasm_api_bg.wasm -------------------------------------------------------------------------------- /lib/vendor_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/vendor_libs.sh -------------------------------------------------------------------------------- /lib/viz-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/viz-lite.js -------------------------------------------------------------------------------- /lib/wabt.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/wabt.LICENSE -------------------------------------------------------------------------------- /lib/wabt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/lib/wabt.js -------------------------------------------------------------------------------- /misc/arc-templates/arc_js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_js/README.md -------------------------------------------------------------------------------- /misc/arc-templates/arc_js/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_js/build.ts -------------------------------------------------------------------------------- /misc/arc-templates/arc_js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_js/package.json -------------------------------------------------------------------------------- /misc/arc-templates/arc_js/src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_js/src/module.js -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/Cargo.toml -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/README.md -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/build.ts -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/package.json -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/src/arc_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/src/arc_module.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/src/color.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/src/lib.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/src/module.js -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust/src/utils.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/Cargo.toml -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/README.md -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/build.ts -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/package.json -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/src/arc_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/src/arc_module.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/src/color.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/src/lib.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/src/module.js -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_font/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_font/src/utils.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/Cargo.toml -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/README.md -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/build.ts -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/package.json -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/src/arc_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/src/arc_module.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/src/color.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/src/lib.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/src/module.js -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_hello_world/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_hello_world/src/utils.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/Cargo.toml -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/README.md -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/build.ts -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/package.json -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/src/arc_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/src/arc_module.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/src/color.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/src/lib.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/src/module.js -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_jsconf_logo/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_jsconf_logo/src/utils.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "arc_project" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/Cargo.toml -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/README.md -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/build.ts -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/package.json -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/src/arc_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/src/arc_module.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/src/browser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/src/browser.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/src/color.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/src/lib.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/src/module.js -------------------------------------------------------------------------------- /misc/arc-templates/arc_rust_random/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_rust_random/src/utils.rs -------------------------------------------------------------------------------- /misc/arc-templates/arc_wat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_wat/README.md -------------------------------------------------------------------------------- /misc/arc-templates/arc_wat/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_wat/build.ts -------------------------------------------------------------------------------- /misc/arc-templates/arc_wat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_wat/package.json -------------------------------------------------------------------------------- /misc/arc-templates/arc_wat/src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_wat/src/module.js -------------------------------------------------------------------------------- /misc/arc-templates/arc_wat/src/module.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/misc/arc-templates/arc_wat/src/module.wat -------------------------------------------------------------------------------- /notes/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/notes/help.md -------------------------------------------------------------------------------- /notes/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/notes/notes.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/tar-js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/@types/tar-js/index.d.ts -------------------------------------------------------------------------------- /src/actions/AppActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/actions/AppActions.ts -------------------------------------------------------------------------------- /src/actions/ArcActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/actions/ArcActions.ts -------------------------------------------------------------------------------- /src/arc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/arc.ts -------------------------------------------------------------------------------- /src/compilerServices/clangService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/compilerServices/clangService.ts -------------------------------------------------------------------------------- /src/compilerServices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/compilerServices/index.ts -------------------------------------------------------------------------------- /src/compilerServices/rustService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/compilerServices/rustService.ts -------------------------------------------------------------------------------- /src/compilerServices/sendRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/compilerServices/sendRequest.ts -------------------------------------------------------------------------------- /src/compilerServices/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/compilerServices/types.ts -------------------------------------------------------------------------------- /src/compilerServices/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/compilerServices/utils.ts -------------------------------------------------------------------------------- /src/compilerServices/x86Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/compilerServices/x86Service.ts -------------------------------------------------------------------------------- /src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/App.tsx -------------------------------------------------------------------------------- /src/components/Binary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Binary.tsx -------------------------------------------------------------------------------- /src/components/BrowserNotSupported.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/BrowserNotSupported.tsx -------------------------------------------------------------------------------- /src/components/ControlCenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/ControlCenter.tsx -------------------------------------------------------------------------------- /src/components/DirectoryTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/DirectoryTree.tsx -------------------------------------------------------------------------------- /src/components/EditFileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/EditFileDialog.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Markdown.tsx -------------------------------------------------------------------------------- /src/components/NewDirectoryDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/NewDirectoryDialog.tsx -------------------------------------------------------------------------------- /src/components/NewFileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/NewFileDialog.tsx -------------------------------------------------------------------------------- /src/components/NewProjectDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/NewProjectDialog.tsx -------------------------------------------------------------------------------- /src/components/Problems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Problems.tsx -------------------------------------------------------------------------------- /src/components/Sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Sandbox.tsx -------------------------------------------------------------------------------- /src/components/ShareDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/ShareDialog.tsx -------------------------------------------------------------------------------- /src/components/Split.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Split.tsx -------------------------------------------------------------------------------- /src/components/StatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/StatusBar.tsx -------------------------------------------------------------------------------- /src/components/Toasts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Toasts.tsx -------------------------------------------------------------------------------- /src/components/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Toolbar.tsx -------------------------------------------------------------------------------- /src/components/UploadFileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/UploadFileDialog.tsx -------------------------------------------------------------------------------- /src/components/Viz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Viz.tsx -------------------------------------------------------------------------------- /src/components/Widgets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Widgets.tsx -------------------------------------------------------------------------------- /src/components/Workspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/Workspace.tsx -------------------------------------------------------------------------------- /src/components/editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/editor/Editor.tsx -------------------------------------------------------------------------------- /src/components/editor/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/editor/Tabs.tsx -------------------------------------------------------------------------------- /src/components/editor/View.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/editor/View.tsx -------------------------------------------------------------------------------- /src/components/editor/ViewTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/editor/ViewTabs.tsx -------------------------------------------------------------------------------- /src/components/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/editor/index.ts -------------------------------------------------------------------------------- /src/components/shared/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/shared/Button.tsx -------------------------------------------------------------------------------- /src/components/shared/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/components/shared/Icons.tsx -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/dispatcher.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/gulpy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/gulpy.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/languages/cton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/languages/cton.ts -------------------------------------------------------------------------------- /src/languages/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/languages/log.ts -------------------------------------------------------------------------------- /src/languages/rust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/languages/rust.ts -------------------------------------------------------------------------------- /src/languages/wat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/languages/wat.ts -------------------------------------------------------------------------------- /src/languages/x86.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/languages/x86.ts -------------------------------------------------------------------------------- /src/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/message.ts -------------------------------------------------------------------------------- /src/models/Directory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/models/Directory.ts -------------------------------------------------------------------------------- /src/models/EventDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/models/EventDispatcher.ts -------------------------------------------------------------------------------- /src/models/File.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/models/File.ts -------------------------------------------------------------------------------- /src/models/ModelRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/models/ModelRef.ts -------------------------------------------------------------------------------- /src/models/Problem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/models/Problem.ts -------------------------------------------------------------------------------- /src/models/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/models/Project.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/models/types.ts -------------------------------------------------------------------------------- /src/monaco-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/monaco-controller.ts -------------------------------------------------------------------------------- /src/monaco-dnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/monaco-dnd.ts -------------------------------------------------------------------------------- /src/monaco-extra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/monaco-extra.ts -------------------------------------------------------------------------------- /src/monaco-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/monaco-utils.ts -------------------------------------------------------------------------------- /src/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/service.ts -------------------------------------------------------------------------------- /src/stores/AppStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/stores/AppStore.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/Logger.ts -------------------------------------------------------------------------------- /src/utils/Template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/Template.ts -------------------------------------------------------------------------------- /src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/download.ts -------------------------------------------------------------------------------- /src/utils/fetchTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/fetchTemplates.ts -------------------------------------------------------------------------------- /src/utils/ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/ga.ts -------------------------------------------------------------------------------- /src/utils/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/group.ts -------------------------------------------------------------------------------- /src/utils/registerLanguages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/registerLanguages.ts -------------------------------------------------------------------------------- /src/utils/registerTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/registerTheme.ts -------------------------------------------------------------------------------- /src/utils/rewriteSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/rewriteSources.ts -------------------------------------------------------------------------------- /src/utils/splitUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/splitUtils.ts -------------------------------------------------------------------------------- /src/utils/taskRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/taskRunner.ts -------------------------------------------------------------------------------- /src/utils/zlib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/utils/zlib.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/src/worker.ts -------------------------------------------------------------------------------- /stryker.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/stryker.conf.js -------------------------------------------------------------------------------- /style/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/style/global.css -------------------------------------------------------------------------------- /style/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/style/markdown.css -------------------------------------------------------------------------------- /style/ref.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/split-pane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/style/split-pane.css -------------------------------------------------------------------------------- /style/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/style/theme.css -------------------------------------------------------------------------------- /svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/close.svg -------------------------------------------------------------------------------- /svg/default_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/default_file.svg -------------------------------------------------------------------------------- /svg/default_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/default_folder.svg -------------------------------------------------------------------------------- /svg/default_folder_opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/default_folder_opened.svg -------------------------------------------------------------------------------- /svg/error-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/error-dark.svg -------------------------------------------------------------------------------- /svg/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/error.svg -------------------------------------------------------------------------------- /svg/favicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/favicon.psd -------------------------------------------------------------------------------- /svg/info-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/info-dark.svg -------------------------------------------------------------------------------- /svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/info.svg -------------------------------------------------------------------------------- /svg/wa-pp-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/wa-pp-black.svg -------------------------------------------------------------------------------- /svg/wa-pp-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/wa-pp-white.svg -------------------------------------------------------------------------------- /svg/wa-pp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/wa-pp.svg -------------------------------------------------------------------------------- /svg/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/wa.svg -------------------------------------------------------------------------------- /svg/warning-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/warning-dark.svg -------------------------------------------------------------------------------- /svg/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/warning.svg -------------------------------------------------------------------------------- /svg/web-assembly-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/web-assembly-logo-black.svg -------------------------------------------------------------------------------- /svg/web-assembly-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/web-assembly-logo-white.svg -------------------------------------------------------------------------------- /svg/web-assembly-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/svg/web-assembly-logo.svg -------------------------------------------------------------------------------- /templates/empty_c/README.md: -------------------------------------------------------------------------------- 1 | # Empty C Project 2 | -------------------------------------------------------------------------------- /templates/empty_c/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_c/build.ts -------------------------------------------------------------------------------- /templates/empty_c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_c/package.json -------------------------------------------------------------------------------- /templates/empty_c/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_c/src/main.c -------------------------------------------------------------------------------- /templates/empty_c/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_c/src/main.html -------------------------------------------------------------------------------- /templates/empty_c/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_c/src/main.js -------------------------------------------------------------------------------- /templates/empty_rust/README.md: -------------------------------------------------------------------------------- 1 | # Empty Rust Project 2 | -------------------------------------------------------------------------------- /templates/empty_rust/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_rust/build.ts -------------------------------------------------------------------------------- /templates/empty_rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_rust/package.json -------------------------------------------------------------------------------- /templates/empty_rust/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_rust/src/main.html -------------------------------------------------------------------------------- /templates/empty_rust/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_rust/src/main.js -------------------------------------------------------------------------------- /templates/empty_rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_rust/src/main.rs -------------------------------------------------------------------------------- /templates/empty_ts/README.md: -------------------------------------------------------------------------------- 1 | # Empty AssemblyScript Project 2 | -------------------------------------------------------------------------------- /templates/empty_ts/assembly/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_ts/assembly/main.ts -------------------------------------------------------------------------------- /templates/empty_ts/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_ts/assembly/tsconfig.json -------------------------------------------------------------------------------- /templates/empty_ts/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_ts/gulpfile.js -------------------------------------------------------------------------------- /templates/empty_ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_ts/package.json -------------------------------------------------------------------------------- /templates/empty_ts/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_ts/setup.js -------------------------------------------------------------------------------- /templates/empty_ts/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_ts/src/main.html -------------------------------------------------------------------------------- /templates/empty_ts/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_ts/src/main.js -------------------------------------------------------------------------------- /templates/empty_wat/README.md: -------------------------------------------------------------------------------- 1 | # Empty Wat Project 2 | -------------------------------------------------------------------------------- /templates/empty_wat/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_wat/build.ts -------------------------------------------------------------------------------- /templates/empty_wat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_wat/package.json -------------------------------------------------------------------------------- /templates/empty_wat/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_wat/src/main.html -------------------------------------------------------------------------------- /templates/empty_wat/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_wat/src/main.js -------------------------------------------------------------------------------- /templates/empty_wat/src/main.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/empty_wat/src/main.wat -------------------------------------------------------------------------------- /templates/hello_world_c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_c/README.md -------------------------------------------------------------------------------- /templates/hello_world_c/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_c/build.ts -------------------------------------------------------------------------------- /templates/hello_world_c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_c/package.json -------------------------------------------------------------------------------- /templates/hello_world_c/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_c/src/main.c -------------------------------------------------------------------------------- /templates/hello_world_c/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_c/src/main.html -------------------------------------------------------------------------------- /templates/hello_world_c/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_c/src/main.js -------------------------------------------------------------------------------- /templates/hello_world_rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_rust/README.md -------------------------------------------------------------------------------- /templates/hello_world_rust/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_rust/build.ts -------------------------------------------------------------------------------- /templates/hello_world_rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_rust/package.json -------------------------------------------------------------------------------- /templates/hello_world_rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_rust/src/lib.rs -------------------------------------------------------------------------------- /templates/hello_world_rust/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_rust/src/main.html -------------------------------------------------------------------------------- /templates/hello_world_rust/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/templates/hello_world_rust/src/main.js -------------------------------------------------------------------------------- /test-preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/test-preprocessor.js -------------------------------------------------------------------------------- /test-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/test-setup.js -------------------------------------------------------------------------------- /test-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/test-shim.js -------------------------------------------------------------------------------- /tests/actions/AppActions/AppActions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/actions/AppActions/AppActions.spec.ts -------------------------------------------------------------------------------- /tests/actions/ArcActions/ArcActions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/actions/ArcActions/ArcActions.spec.ts -------------------------------------------------------------------------------- /tests/compilerServices/clangService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/compilerServices/clangService.spec.ts -------------------------------------------------------------------------------- /tests/compilerServices/createCompilerService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/compilerServices/createCompilerService.spec.ts -------------------------------------------------------------------------------- /tests/compilerServices/rustService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/compilerServices/rustService.spec.ts -------------------------------------------------------------------------------- /tests/compilerServices/sendRequest.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/compilerServices/sendRequest.spec.ts -------------------------------------------------------------------------------- /tests/compilerServices/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/compilerServices/utils.spec.ts -------------------------------------------------------------------------------- /tests/compilerServices/x86Service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/compilerServices/x86Service.spec.ts -------------------------------------------------------------------------------- /tests/components/App/App.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/App/App.spec.tsx -------------------------------------------------------------------------------- /tests/components/App/__snapshots__/App.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/App/__snapshots__/App.spec.tsx.snap -------------------------------------------------------------------------------- /tests/components/Binary/Binary.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Binary/Binary.spec.tsx -------------------------------------------------------------------------------- /tests/components/BrowserNotSupported/BrowserNotSupported.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/BrowserNotSupported/BrowserNotSupported.spec.tsx -------------------------------------------------------------------------------- /tests/components/Button/Button.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Button/Button.spec.tsx -------------------------------------------------------------------------------- /tests/components/ControlCenter/ControlCenter.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/ControlCenter/ControlCenter.spec.tsx -------------------------------------------------------------------------------- /tests/components/DirectoryTree/DirectoryTree.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/DirectoryTree/DirectoryTree.spec.tsx -------------------------------------------------------------------------------- /tests/components/EditFileDialog/EditFileDialog.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/EditFileDialog/EditFileDialog.spec.tsx -------------------------------------------------------------------------------- /tests/components/Editor/EditorView.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Editor/EditorView.spec.tsx -------------------------------------------------------------------------------- /tests/components/Editor/Monaco.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Editor/Monaco.spec.tsx -------------------------------------------------------------------------------- /tests/components/ErrorBoundary/ErrorBoundary.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/ErrorBoundary/ErrorBoundary.spec.tsx -------------------------------------------------------------------------------- /tests/components/Header/Header.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Header/Header.spec.tsx -------------------------------------------------------------------------------- /tests/components/Markdown/Markdown.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Markdown/Markdown.spec.tsx -------------------------------------------------------------------------------- /tests/components/NewDirectoryDialog/NewDirectoryDialog.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/NewDirectoryDialog/NewDirectoryDialog.spec.tsx -------------------------------------------------------------------------------- /tests/components/NewDirectoryDialog/__snapshots__/NewDirectoryDialog.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/NewDirectoryDialog/__snapshots__/NewDirectoryDialog.spec.tsx.snap -------------------------------------------------------------------------------- /tests/components/NewFileDialog/NewFileDialog.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/NewFileDialog/NewFileDialog.spec.tsx -------------------------------------------------------------------------------- /tests/components/NewFileDialog/__snapshots__/NewFileDialog.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/NewFileDialog/__snapshots__/NewFileDialog.spec.tsx.snap -------------------------------------------------------------------------------- /tests/components/NewProjectDialog/NewProjectDialog.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/NewProjectDialog/NewProjectDialog.spec.tsx -------------------------------------------------------------------------------- /tests/components/NewProjectDialog/__snapshots__/NewProjectDialog.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/NewProjectDialog/__snapshots__/NewProjectDialog.spec.tsx.snap -------------------------------------------------------------------------------- /tests/components/NewProjectDialog/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/NewProjectDialog/templates.json -------------------------------------------------------------------------------- /tests/components/Problems/Problems.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Problems/Problems.spec.tsx -------------------------------------------------------------------------------- /tests/components/Sandbox/Sandbox.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Sandbox/Sandbox.spec.tsx -------------------------------------------------------------------------------- /tests/components/ShareDialog/ShareDialog.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/ShareDialog/ShareDialog.spec.tsx -------------------------------------------------------------------------------- /tests/components/ShareDialog/__snapshots__/ShareDialog.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/ShareDialog/__snapshots__/ShareDialog.spec.tsx.snap -------------------------------------------------------------------------------- /tests/components/Split/Split.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Split/Split.spec.tsx -------------------------------------------------------------------------------- /tests/components/StatusBar/StatusBar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/StatusBar/StatusBar.spec.tsx -------------------------------------------------------------------------------- /tests/components/Tabs/Tab.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Tabs/Tab.spec.tsx -------------------------------------------------------------------------------- /tests/components/Tabs/Tabs.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Tabs/Tabs.spec.tsx -------------------------------------------------------------------------------- /tests/components/Toast/Toasts.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Toast/Toasts.spec.tsx -------------------------------------------------------------------------------- /tests/components/Toast/__snapshots__/Toasts.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Toast/__snapshots__/Toasts.spec.tsx.snap -------------------------------------------------------------------------------- /tests/components/Toolbar/Toolbar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Toolbar/Toolbar.spec.tsx -------------------------------------------------------------------------------- /tests/components/UploadFileDialog/UploadFileDialog.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/UploadFileDialog/UploadFileDialog.spec.tsx -------------------------------------------------------------------------------- /tests/components/View/View.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/View/View.spec.tsx -------------------------------------------------------------------------------- /tests/components/ViewTabs/ViewTabs.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/ViewTabs/ViewTabs.spec.tsx -------------------------------------------------------------------------------- /tests/components/Viz/Viz.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Viz/Viz.spec.tsx -------------------------------------------------------------------------------- /tests/components/Widgets/Widgets.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Widgets/Widgets.spec.tsx -------------------------------------------------------------------------------- /tests/components/Workspace/Workspace.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/Workspace/Workspace.spec.tsx -------------------------------------------------------------------------------- /tests/components/icons/icons.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/components/icons/icons.spec.tsx -------------------------------------------------------------------------------- /tests/e2e/EmptyCProject.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/e2e/EmptyCProject.e2e.ts -------------------------------------------------------------------------------- /tests/languages/cton.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/languages/cton.spec.ts -------------------------------------------------------------------------------- /tests/languages/log.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/languages/log.spec.ts -------------------------------------------------------------------------------- /tests/languages/rust.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/languages/rust.spec.ts -------------------------------------------------------------------------------- /tests/languages/wat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/languages/wat.spec.ts -------------------------------------------------------------------------------- /tests/languages/x86.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/languages/x86.spec.ts -------------------------------------------------------------------------------- /tests/services/Service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/services/Service.spec.ts -------------------------------------------------------------------------------- /tests/services/ServiceWorker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/services/ServiceWorker.spec.ts -------------------------------------------------------------------------------- /tests/stores/AppStore/AppStore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/stores/AppStore/AppStore.spec.ts -------------------------------------------------------------------------------- /tests/unit/Controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/Controller.spec.ts -------------------------------------------------------------------------------- /tests/unit/DragAndDrop.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/DragAndDrop.spec.ts -------------------------------------------------------------------------------- /tests/unit/EventDispatcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/EventDispatcher.spec.ts -------------------------------------------------------------------------------- /tests/unit/FileType.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/FileType.spec.ts -------------------------------------------------------------------------------- /tests/unit/Logger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/Logger.spec.ts -------------------------------------------------------------------------------- /tests/unit/ModelRef.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/ModelRef.spec.ts -------------------------------------------------------------------------------- /tests/unit/Problem.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/Problem.spec.ts -------------------------------------------------------------------------------- /tests/unit/Project.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/Project.spec.ts -------------------------------------------------------------------------------- /tests/unit/Template.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/Template.spec.ts -------------------------------------------------------------------------------- /tests/unit/arc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/arc.spec.ts -------------------------------------------------------------------------------- /tests/unit/directory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/directory.spec.ts -------------------------------------------------------------------------------- /tests/unit/file.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/file.spec.ts -------------------------------------------------------------------------------- /tests/unit/gulpy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/gulpy.spec.ts -------------------------------------------------------------------------------- /tests/unit/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/index.spec.tsx -------------------------------------------------------------------------------- /tests/unit/splitUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/unit/splitUtils.spec.ts -------------------------------------------------------------------------------- /tests/utils/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/config.spec.ts -------------------------------------------------------------------------------- /tests/utils/download.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/download.spec.ts -------------------------------------------------------------------------------- /tests/utils/fetchTemplates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/fetchTemplates.spec.ts -------------------------------------------------------------------------------- /tests/utils/ga.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/ga.spec.ts -------------------------------------------------------------------------------- /tests/utils/group.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/group.spec.tsx -------------------------------------------------------------------------------- /tests/utils/registerLanguages.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/registerLanguages.spec.ts -------------------------------------------------------------------------------- /tests/utils/registerTheme.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/registerTheme.spec.ts -------------------------------------------------------------------------------- /tests/utils/rewriteSources.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/rewriteSources.spec.tsx -------------------------------------------------------------------------------- /tests/utils/service.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/service.spec.tsx -------------------------------------------------------------------------------- /tests/utils/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/util.spec.ts -------------------------------------------------------------------------------- /tests/utils/zlib.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tests/utils/zlib.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/tslint.json -------------------------------------------------------------------------------- /web-assembly-icon-white-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/web-assembly-icon-white-64px.png -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasdk/WebAssemblyStudio/HEAD/webpack.config.js --------------------------------------------------------------------------------