├── LICENSE ├── README.md └── demo ├── code-editor-embed.html ├── index.html ├── model-vis-embed.html ├── netron-6.4.0 ├── .github │ ├── DEVELOPMENT.md │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── logo-dark.svg │ ├── logo-light.svg │ ├── screenshot.png │ └── workflows │ │ ├── build.yml │ │ └── publish.yml ├── .gitignore ├── .vscode │ ├── launch.json │ └── settings.json ├── CITATION.cff ├── LICENSE ├── Makefile ├── README.md ├── package.json ├── publish │ ├── background.png │ ├── background.svg │ ├── background@2x.png │ ├── cask.js │ ├── icon.html │ ├── icon.icns │ ├── icon.icns.svg │ ├── icon.ico │ ├── icon.png │ ├── icon.svg │ ├── notarize.js │ ├── python.py │ ├── setup.py │ ├── version.js │ ├── web.js │ └── winget.js ├── source │ ├── __init__.py │ ├── acuity-metadata.json │ ├── acuity.js │ ├── app.js │ ├── armnn-metadata.json │ ├── armnn-schema.js │ ├── armnn.js │ ├── barracuda.js │ ├── base.js │ ├── bigdl-metadata.json │ ├── bigdl-proto.js │ ├── bigdl.js │ ├── caffe-metadata.json │ ├── caffe-proto.js │ ├── caffe.js │ ├── caffe2-metadata.json │ ├── caffe2-proto.js │ ├── caffe2.js │ ├── cambricon.js │ ├── circle-metadata.json │ ├── circle-schema.js │ ├── circle.js │ ├── cntk-metadata.json │ ├── cntk-proto.js │ ├── cntk.js │ ├── coreml-metadata.json │ ├── coreml-proto.js │ ├── coreml.js │ ├── dagre.js │ ├── darknet-metadata.json │ ├── darknet.js │ ├── dialog.css │ ├── dialog.js │ ├── dl4j-metadata.json │ ├── dl4j.js │ ├── dlc-metadata.json │ ├── dlc-schema.js │ ├── dlc.js │ ├── dnn-metadata.json │ ├── dnn-proto.js │ ├── dnn.js │ ├── electron.js │ ├── favicon.ico │ ├── flatbuffers.js │ ├── flax.js │ ├── flexbuffers.js │ ├── flux-metadata.json │ ├── flux.js │ ├── grapher.css │ ├── grapher.js │ ├── hdf5.js │ ├── hickle.js │ ├── icon.png │ ├── imgdnn.js │ ├── index.html │ ├── index.js │ ├── json.js │ ├── keras-metadata.json │ ├── keras.js │ ├── kmodel.js │ ├── lasagne-metadata.json │ ├── lasagne.js │ ├── lightgbm.js │ ├── mediapipe.js │ ├── megengine-metadata.json │ ├── megengine-schema.js │ ├── megengine.js │ ├── mlnet-metadata.json │ ├── mlnet.js │ ├── mnn-metadata.json │ ├── mnn-schema.js │ ├── mnn.js │ ├── mslite-metadata.json │ ├── mslite-schema.js │ ├── mslite.js │ ├── mxnet-metadata.json │ ├── mxnet.js │ ├── ncnn-metadata.json │ ├── ncnn.js │ ├── nnabla-metadata.json │ ├── nnabla-proto.js │ ├── nnabla.js │ ├── nnef.js │ ├── numpy.js │ ├── om-metadata.json │ ├── om-proto.js │ ├── om.js │ ├── onednn-metadata.json │ ├── onednn.js │ ├── onnx-metadata.json │ ├── onnx-proto.js │ ├── onnx-schema.js │ ├── onnx.js │ ├── onnx.py │ ├── openvino-metadata.json │ ├── openvino.js │ ├── paddle-metadata.json │ ├── paddle-proto.js │ ├── paddle-schema.js │ ├── paddle.js │ ├── pickle.js │ ├── protobuf.js │ ├── python.js │ ├── pytorch-metadata.json │ ├── pytorch-schema.js │ ├── pytorch.js │ ├── pytorch.py │ ├── rknn-metadata.json │ ├── rknn-schema.js │ ├── rknn.js │ ├── server.js │ ├── server.py │ ├── sklearn-metadata.json │ ├── sklearn.js │ ├── tar.js │ ├── tengine-metadata.json │ ├── tengine.js │ ├── tensorrt.js │ ├── text.js │ ├── tf-metadata.json │ ├── tf-proto.js │ ├── tf.js │ ├── tflite-metadata.json │ ├── tflite-schema.js │ ├── tflite.js │ ├── tnn-metadata.json │ ├── tnn.js │ ├── torch-metadata.json │ ├── torch.js │ ├── uff-metadata.json │ ├── uff-proto.js │ ├── uff.js │ ├── view.js │ ├── weka.js │ ├── xml.js │ ├── xmodel-proto.js │ ├── xmodel.js │ └── zip.js ├── test │ ├── backend.py │ ├── models.js │ └── models.json └── tools │ ├── armnn │ ├── bigdl │ ├── caffe │ ├── circle │ ├── circle_script.js │ ├── cntk │ ├── coreml │ ├── dlc │ ├── dlc.fbs │ ├── dnn │ ├── dnn.proto │ ├── flatc.js │ ├── keras_metadata.py │ ├── mediapipe │ ├── megengine │ ├── megengine_script.js │ ├── mnn │ ├── mslite │ ├── mslite_metadata.js │ ├── nnabla │ ├── nnabla_script.py │ ├── om │ ├── om.proto │ ├── onnx │ ├── onnx_metadata.py │ ├── paddle │ ├── protoc.js │ ├── pytorch │ ├── pytorch_metadata.py │ ├── rknn │ ├── rknn.fbs │ ├── sklearn │ ├── sklearn_metadata.py │ ├── tf │ ├── tf_metadata.py │ ├── tflite_metadata.js │ ├── uff │ ├── uff.proto │ └── xmodel ├── node_modules ├── .package-lock.json ├── monaco-editor │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ThirdPartyNotices.txt │ ├── dev │ │ ├── bundleInfo.json │ │ ├── nls.metadata.json │ │ └── vs │ │ │ ├── base │ │ │ ├── browser │ │ │ │ └── ui │ │ │ │ │ └── codicons │ │ │ │ │ └── codicon │ │ │ │ │ └── codicon.ttf │ │ │ ├── common │ │ │ │ └── worker │ │ │ │ │ ├── simpleWorker.nls.de.js │ │ │ │ │ ├── simpleWorker.nls.es.js │ │ │ │ │ ├── simpleWorker.nls.fr.js │ │ │ │ │ ├── simpleWorker.nls.it.js │ │ │ │ │ ├── simpleWorker.nls.ja.js │ │ │ │ │ ├── simpleWorker.nls.js │ │ │ │ │ ├── simpleWorker.nls.ko.js │ │ │ │ │ ├── simpleWorker.nls.ru.js │ │ │ │ │ ├── simpleWorker.nls.zh-cn.js │ │ │ │ │ └── simpleWorker.nls.zh-tw.js │ │ │ └── worker │ │ │ │ ├── workerMain.js │ │ │ │ └── workerMain.js.map │ │ │ ├── basic-languages │ │ │ ├── abap │ │ │ │ └── abap.js │ │ │ ├── apex │ │ │ │ └── apex.js │ │ │ ├── azcli │ │ │ │ └── azcli.js │ │ │ ├── bat │ │ │ │ └── bat.js │ │ │ ├── bicep │ │ │ │ └── bicep.js │ │ │ ├── cameligo │ │ │ │ └── cameligo.js │ │ │ ├── clojure │ │ │ │ └── clojure.js │ │ │ ├── coffee │ │ │ │ └── coffee.js │ │ │ ├── cpp │ │ │ │ └── cpp.js │ │ │ ├── csharp │ │ │ │ └── csharp.js │ │ │ ├── csp │ │ │ │ └── csp.js │ │ │ ├── css │ │ │ │ └── css.js │ │ │ ├── cypher │ │ │ │ └── cypher.js │ │ │ ├── dart │ │ │ │ └── dart.js │ │ │ ├── dockerfile │ │ │ │ └── dockerfile.js │ │ │ ├── ecl │ │ │ │ └── ecl.js │ │ │ ├── elixir │ │ │ │ └── elixir.js │ │ │ ├── flow9 │ │ │ │ └── flow9.js │ │ │ ├── freemarker2 │ │ │ │ └── freemarker2.js │ │ │ ├── fsharp │ │ │ │ └── fsharp.js │ │ │ ├── go │ │ │ │ └── go.js │ │ │ ├── graphql │ │ │ │ └── graphql.js │ │ │ ├── handlebars │ │ │ │ └── handlebars.js │ │ │ ├── hcl │ │ │ │ └── hcl.js │ │ │ ├── html │ │ │ │ └── html.js │ │ │ ├── ini │ │ │ │ └── ini.js │ │ │ ├── java │ │ │ │ └── java.js │ │ │ ├── javascript │ │ │ │ └── javascript.js │ │ │ ├── julia │ │ │ │ └── julia.js │ │ │ ├── kotlin │ │ │ │ └── kotlin.js │ │ │ ├── less │ │ │ │ └── less.js │ │ │ ├── lexon │ │ │ │ └── lexon.js │ │ │ ├── liquid │ │ │ │ └── liquid.js │ │ │ ├── lua │ │ │ │ └── lua.js │ │ │ ├── m3 │ │ │ │ └── m3.js │ │ │ ├── markdown │ │ │ │ └── markdown.js │ │ │ ├── mips │ │ │ │ └── mips.js │ │ │ ├── msdax │ │ │ │ └── msdax.js │ │ │ ├── mysql │ │ │ │ └── mysql.js │ │ │ ├── objective-c │ │ │ │ └── objective-c.js │ │ │ ├── pascal │ │ │ │ └── pascal.js │ │ │ ├── pascaligo │ │ │ │ └── pascaligo.js │ │ │ ├── perl │ │ │ │ └── perl.js │ │ │ ├── pgsql │ │ │ │ └── pgsql.js │ │ │ ├── php │ │ │ │ └── php.js │ │ │ ├── pla │ │ │ │ └── pla.js │ │ │ ├── postiats │ │ │ │ └── postiats.js │ │ │ ├── powerquery │ │ │ │ └── powerquery.js │ │ │ ├── powershell │ │ │ │ └── powershell.js │ │ │ ├── protobuf │ │ │ │ └── protobuf.js │ │ │ ├── pug │ │ │ │ └── pug.js │ │ │ ├── python │ │ │ │ └── python.js │ │ │ ├── qsharp │ │ │ │ └── qsharp.js │ │ │ ├── r │ │ │ │ └── r.js │ │ │ ├── razor │ │ │ │ └── razor.js │ │ │ ├── redis │ │ │ │ └── redis.js │ │ │ ├── redshift │ │ │ │ └── redshift.js │ │ │ ├── restructuredtext │ │ │ │ └── restructuredtext.js │ │ │ ├── ruby │ │ │ │ └── ruby.js │ │ │ ├── rust │ │ │ │ └── rust.js │ │ │ ├── sb │ │ │ │ └── sb.js │ │ │ ├── scala │ │ │ │ └── scala.js │ │ │ ├── scheme │ │ │ │ └── scheme.js │ │ │ ├── scss │ │ │ │ └── scss.js │ │ │ ├── shell │ │ │ │ └── shell.js │ │ │ ├── solidity │ │ │ │ └── solidity.js │ │ │ ├── sophia │ │ │ │ └── sophia.js │ │ │ ├── sparql │ │ │ │ └── sparql.js │ │ │ ├── sql │ │ │ │ └── sql.js │ │ │ ├── st │ │ │ │ └── st.js │ │ │ ├── swift │ │ │ │ └── swift.js │ │ │ ├── systemverilog │ │ │ │ └── systemverilog.js │ │ │ ├── tcl │ │ │ │ └── tcl.js │ │ │ ├── twig │ │ │ │ └── twig.js │ │ │ ├── typescript │ │ │ │ └── typescript.js │ │ │ ├── vb │ │ │ │ └── vb.js │ │ │ ├── xml │ │ │ │ └── xml.js │ │ │ └── yaml │ │ │ │ └── yaml.js │ │ │ ├── editor │ │ │ ├── editor.main.css │ │ │ ├── editor.main.js │ │ │ ├── editor.main.js.map │ │ │ ├── editor.main.nls.de.js │ │ │ ├── editor.main.nls.es.js │ │ │ ├── editor.main.nls.fr.js │ │ │ ├── editor.main.nls.it.js │ │ │ ├── editor.main.nls.ja.js │ │ │ ├── editor.main.nls.js │ │ │ ├── editor.main.nls.ko.js │ │ │ ├── editor.main.nls.ru.js │ │ │ ├── editor.main.nls.zh-cn.js │ │ │ └── editor.main.nls.zh-tw.js │ │ │ ├── language │ │ │ ├── css │ │ │ │ ├── cssMode.js │ │ │ │ └── cssWorker.js │ │ │ ├── html │ │ │ │ ├── htmlMode.js │ │ │ │ └── htmlWorker.js │ │ │ ├── json │ │ │ │ ├── jsonMode.js │ │ │ │ └── jsonWorker.js │ │ │ └── typescript │ │ │ │ ├── tsMode.js │ │ │ │ └── tsWorker.js │ │ │ └── loader.js │ ├── esm │ │ ├── metadata.d.ts │ │ ├── metadata.js │ │ └── vs │ │ │ ├── base │ │ │ ├── browser │ │ │ │ ├── browser.js │ │ │ │ ├── canIUse.js │ │ │ │ ├── contextmenu.js │ │ │ │ ├── defaultWorkerFactory.js │ │ │ │ ├── dnd.js │ │ │ │ ├── dom.js │ │ │ │ ├── dompurify │ │ │ │ │ └── dompurify.js │ │ │ │ ├── event.js │ │ │ │ ├── fastDomNode.js │ │ │ │ ├── formattedTextRenderer.js │ │ │ │ ├── globalPointerMoveMonitor.js │ │ │ │ ├── history.js │ │ │ │ ├── iframe.js │ │ │ │ ├── keyboardEvent.js │ │ │ │ ├── markdownRenderer.js │ │ │ │ ├── mouseEvent.js │ │ │ │ ├── touch.js │ │ │ │ └── ui │ │ │ │ │ ├── actionbar │ │ │ │ │ ├── actionViewItems.js │ │ │ │ │ ├── actionbar.css │ │ │ │ │ └── actionbar.js │ │ │ │ │ ├── aria │ │ │ │ │ ├── aria.css │ │ │ │ │ └── aria.js │ │ │ │ │ ├── button │ │ │ │ │ ├── button.css │ │ │ │ │ └── button.js │ │ │ │ │ ├── codicons │ │ │ │ │ ├── codicon │ │ │ │ │ │ ├── codicon-modifiers.css │ │ │ │ │ │ ├── codicon.css │ │ │ │ │ │ └── codicon.ttf │ │ │ │ │ └── codiconStyles.js │ │ │ │ │ ├── contextview │ │ │ │ │ ├── contextview.css │ │ │ │ │ └── contextview.js │ │ │ │ │ ├── countBadge │ │ │ │ │ ├── countBadge.css │ │ │ │ │ └── countBadge.js │ │ │ │ │ ├── dropdown │ │ │ │ │ ├── dropdown.css │ │ │ │ │ ├── dropdown.js │ │ │ │ │ └── dropdownActionViewItem.js │ │ │ │ │ ├── findinput │ │ │ │ │ ├── findInput.css │ │ │ │ │ ├── findInput.js │ │ │ │ │ ├── findInputToggles.js │ │ │ │ │ └── replaceInput.js │ │ │ │ │ ├── highlightedlabel │ │ │ │ │ └── highlightedLabel.js │ │ │ │ │ ├── hover │ │ │ │ │ ├── hover.css │ │ │ │ │ └── hoverWidget.js │ │ │ │ │ ├── iconLabel │ │ │ │ │ ├── iconHoverDelegate.js │ │ │ │ │ ├── iconLabel.js │ │ │ │ │ ├── iconLabelHover.js │ │ │ │ │ ├── iconLabels.js │ │ │ │ │ └── iconlabel.css │ │ │ │ │ ├── inputbox │ │ │ │ │ ├── inputBox.css │ │ │ │ │ └── inputBox.js │ │ │ │ │ ├── keybindingLabel │ │ │ │ │ ├── keybindingLabel.css │ │ │ │ │ └── keybindingLabel.js │ │ │ │ │ ├── list │ │ │ │ │ ├── list.css │ │ │ │ │ ├── list.js │ │ │ │ │ ├── listPaging.js │ │ │ │ │ ├── listView.js │ │ │ │ │ ├── listWidget.js │ │ │ │ │ ├── rangeMap.js │ │ │ │ │ ├── rowCache.js │ │ │ │ │ └── splice.js │ │ │ │ │ ├── menu │ │ │ │ │ └── menu.js │ │ │ │ │ ├── mouseCursor │ │ │ │ │ ├── mouseCursor.css │ │ │ │ │ └── mouseCursor.js │ │ │ │ │ ├── progressbar │ │ │ │ │ ├── progressbar.css │ │ │ │ │ └── progressbar.js │ │ │ │ │ ├── resizable │ │ │ │ │ └── resizable.js │ │ │ │ │ ├── sash │ │ │ │ │ ├── sash.css │ │ │ │ │ └── sash.js │ │ │ │ │ ├── scrollbar │ │ │ │ │ ├── abstractScrollbar.js │ │ │ │ │ ├── horizontalScrollbar.js │ │ │ │ │ ├── media │ │ │ │ │ │ └── scrollbars.css │ │ │ │ │ ├── scrollableElement.js │ │ │ │ │ ├── scrollableElementOptions.js │ │ │ │ │ ├── scrollbarArrow.js │ │ │ │ │ ├── scrollbarState.js │ │ │ │ │ ├── scrollbarVisibilityController.js │ │ │ │ │ └── verticalScrollbar.js │ │ │ │ │ ├── splitview │ │ │ │ │ ├── splitview.css │ │ │ │ │ └── splitview.js │ │ │ │ │ ├── table │ │ │ │ │ ├── table.css │ │ │ │ │ ├── table.js │ │ │ │ │ └── tableWidget.js │ │ │ │ │ ├── toggle │ │ │ │ │ ├── toggle.css │ │ │ │ │ └── toggle.js │ │ │ │ │ ├── tree │ │ │ │ │ ├── abstractTree.js │ │ │ │ │ ├── asyncDataTree.js │ │ │ │ │ ├── compressedObjectTreeModel.js │ │ │ │ │ ├── dataTree.js │ │ │ │ │ ├── indexTreeModel.js │ │ │ │ │ ├── media │ │ │ │ │ │ └── tree.css │ │ │ │ │ ├── objectTree.js │ │ │ │ │ ├── objectTreeModel.js │ │ │ │ │ └── tree.js │ │ │ │ │ └── widget.js │ │ │ ├── common │ │ │ │ ├── actions.js │ │ │ │ ├── arrays.js │ │ │ │ ├── assert.js │ │ │ │ ├── async.js │ │ │ │ ├── buffer.js │ │ │ │ ├── cache.js │ │ │ │ ├── cancellation.js │ │ │ │ ├── charCode.js │ │ │ │ ├── codicons.js │ │ │ │ ├── collections.js │ │ │ │ ├── color.js │ │ │ │ ├── comparers.js │ │ │ │ ├── dataTransfer.js │ │ │ │ ├── decorators.js │ │ │ │ ├── diff │ │ │ │ │ ├── diff.js │ │ │ │ │ └── diffChange.js │ │ │ │ ├── errorMessage.js │ │ │ │ ├── errors.js │ │ │ │ ├── event.js │ │ │ │ ├── extpath.js │ │ │ │ ├── filters.js │ │ │ │ ├── functional.js │ │ │ │ ├── fuzzyScorer.js │ │ │ │ ├── glob.js │ │ │ │ ├── hash.js │ │ │ │ ├── history.js │ │ │ │ ├── htmlContent.js │ │ │ │ ├── iconLabels.js │ │ │ │ ├── idGenerator.js │ │ │ │ ├── iterator.js │ │ │ │ ├── jsonSchema.js │ │ │ │ ├── keyCodes.js │ │ │ │ ├── keybindingLabels.js │ │ │ │ ├── keybindings.js │ │ │ │ ├── labels.js │ │ │ │ ├── lazy.js │ │ │ │ ├── lifecycle.js │ │ │ │ ├── linkedList.js │ │ │ │ ├── map.js │ │ │ │ ├── marked │ │ │ │ │ └── marked.js │ │ │ │ ├── marshalling.js │ │ │ │ ├── marshallingIds.js │ │ │ │ ├── mime.js │ │ │ │ ├── navigator.js │ │ │ │ ├── network.js │ │ │ │ ├── numbers.js │ │ │ │ ├── objects.js │ │ │ │ ├── observable.js │ │ │ │ ├── observableImpl │ │ │ │ │ ├── base.js │ │ │ │ │ ├── logging.js │ │ │ │ │ └── utils.js │ │ │ │ ├── observableValue.js │ │ │ │ ├── paging.js │ │ │ │ ├── path.js │ │ │ │ ├── platform.js │ │ │ │ ├── process.js │ │ │ │ ├── range.js │ │ │ │ ├── resources.js │ │ │ │ ├── scrollable.js │ │ │ │ ├── search.js │ │ │ │ ├── sequence.js │ │ │ │ ├── severity.js │ │ │ │ ├── stopwatch.js │ │ │ │ ├── strings.js │ │ │ │ ├── styler.js │ │ │ │ ├── types.js │ │ │ │ ├── uint.js │ │ │ │ ├── uri.js │ │ │ │ ├── uuid.js │ │ │ │ └── worker │ │ │ │ │ └── simpleWorker.js │ │ │ └── parts │ │ │ │ ├── quickinput │ │ │ │ ├── browser │ │ │ │ │ ├── media │ │ │ │ │ │ └── quickInput.css │ │ │ │ │ ├── quickInput.js │ │ │ │ │ ├── quickInputBox.js │ │ │ │ │ ├── quickInputList.js │ │ │ │ │ └── quickInputUtils.js │ │ │ │ └── common │ │ │ │ │ └── quickInput.js │ │ │ │ └── storage │ │ │ │ └── common │ │ │ │ └── storage.js │ │ │ ├── basic-languages │ │ │ ├── _.contribution.js │ │ │ ├── abap │ │ │ │ ├── abap.contribution.js │ │ │ │ └── abap.js │ │ │ ├── apex │ │ │ │ ├── apex.contribution.js │ │ │ │ └── apex.js │ │ │ ├── azcli │ │ │ │ ├── azcli.contribution.js │ │ │ │ └── azcli.js │ │ │ ├── bat │ │ │ │ ├── bat.contribution.js │ │ │ │ └── bat.js │ │ │ ├── bicep │ │ │ │ ├── bicep.contribution.js │ │ │ │ └── bicep.js │ │ │ ├── cameligo │ │ │ │ ├── cameligo.contribution.js │ │ │ │ └── cameligo.js │ │ │ ├── clojure │ │ │ │ ├── clojure.contribution.js │ │ │ │ └── clojure.js │ │ │ ├── coffee │ │ │ │ ├── coffee.contribution.js │ │ │ │ └── coffee.js │ │ │ ├── cpp │ │ │ │ ├── cpp.contribution.js │ │ │ │ └── cpp.js │ │ │ ├── csharp │ │ │ │ ├── csharp.contribution.js │ │ │ │ └── csharp.js │ │ │ ├── csp │ │ │ │ ├── csp.contribution.js │ │ │ │ └── csp.js │ │ │ ├── css │ │ │ │ ├── css.contribution.js │ │ │ │ └── css.js │ │ │ ├── cypher │ │ │ │ ├── cypher.contribution.js │ │ │ │ └── cypher.js │ │ │ ├── dart │ │ │ │ ├── dart.contribution.js │ │ │ │ └── dart.js │ │ │ ├── dockerfile │ │ │ │ ├── dockerfile.contribution.js │ │ │ │ └── dockerfile.js │ │ │ ├── ecl │ │ │ │ ├── ecl.contribution.js │ │ │ │ └── ecl.js │ │ │ ├── elixir │ │ │ │ ├── elixir.contribution.js │ │ │ │ └── elixir.js │ │ │ ├── flow9 │ │ │ │ ├── flow9.contribution.js │ │ │ │ └── flow9.js │ │ │ ├── freemarker2 │ │ │ │ ├── freemarker2.contribution.js │ │ │ │ └── freemarker2.js │ │ │ ├── fsharp │ │ │ │ ├── fsharp.contribution.js │ │ │ │ └── fsharp.js │ │ │ ├── go │ │ │ │ ├── go.contribution.js │ │ │ │ └── go.js │ │ │ ├── graphql │ │ │ │ ├── graphql.contribution.js │ │ │ │ └── graphql.js │ │ │ ├── handlebars │ │ │ │ ├── handlebars.contribution.js │ │ │ │ └── handlebars.js │ │ │ ├── hcl │ │ │ │ ├── hcl.contribution.js │ │ │ │ └── hcl.js │ │ │ ├── html │ │ │ │ ├── html.contribution.js │ │ │ │ └── html.js │ │ │ ├── ini │ │ │ │ ├── ini.contribution.js │ │ │ │ └── ini.js │ │ │ ├── java │ │ │ │ ├── java.contribution.js │ │ │ │ └── java.js │ │ │ ├── javascript │ │ │ │ ├── javascript.contribution.js │ │ │ │ └── javascript.js │ │ │ ├── julia │ │ │ │ ├── julia.contribution.js │ │ │ │ └── julia.js │ │ │ ├── kotlin │ │ │ │ ├── kotlin.contribution.js │ │ │ │ └── kotlin.js │ │ │ ├── less │ │ │ │ ├── less.contribution.js │ │ │ │ └── less.js │ │ │ ├── lexon │ │ │ │ ├── lexon.contribution.js │ │ │ │ └── lexon.js │ │ │ ├── liquid │ │ │ │ ├── liquid.contribution.js │ │ │ │ └── liquid.js │ │ │ ├── lua │ │ │ │ ├── lua.contribution.js │ │ │ │ └── lua.js │ │ │ ├── m3 │ │ │ │ ├── m3.contribution.js │ │ │ │ └── m3.js │ │ │ ├── markdown │ │ │ │ ├── markdown.contribution.js │ │ │ │ └── markdown.js │ │ │ ├── mips │ │ │ │ ├── mips.contribution.js │ │ │ │ └── mips.js │ │ │ ├── monaco.contribution.js │ │ │ ├── msdax │ │ │ │ ├── msdax.contribution.js │ │ │ │ └── msdax.js │ │ │ ├── mysql │ │ │ │ ├── mysql.contribution.js │ │ │ │ └── mysql.js │ │ │ ├── objective-c │ │ │ │ ├── objective-c.contribution.js │ │ │ │ └── objective-c.js │ │ │ ├── pascal │ │ │ │ ├── pascal.contribution.js │ │ │ │ └── pascal.js │ │ │ ├── pascaligo │ │ │ │ ├── pascaligo.contribution.js │ │ │ │ └── pascaligo.js │ │ │ ├── perl │ │ │ │ ├── perl.contribution.js │ │ │ │ └── perl.js │ │ │ ├── pgsql │ │ │ │ ├── pgsql.contribution.js │ │ │ │ └── pgsql.js │ │ │ ├── php │ │ │ │ ├── php.contribution.js │ │ │ │ └── php.js │ │ │ ├── pla │ │ │ │ ├── pla.contribution.js │ │ │ │ └── pla.js │ │ │ ├── postiats │ │ │ │ ├── postiats.contribution.js │ │ │ │ └── postiats.js │ │ │ ├── powerquery │ │ │ │ ├── powerquery.contribution.js │ │ │ │ └── powerquery.js │ │ │ ├── powershell │ │ │ │ ├── powershell.contribution.js │ │ │ │ └── powershell.js │ │ │ ├── protobuf │ │ │ │ ├── protobuf.contribution.js │ │ │ │ └── protobuf.js │ │ │ ├── pug │ │ │ │ ├── pug.contribution.js │ │ │ │ └── pug.js │ │ │ ├── python │ │ │ │ ├── python.contribution.js │ │ │ │ └── python.js │ │ │ ├── qsharp │ │ │ │ ├── qsharp.contribution.js │ │ │ │ └── qsharp.js │ │ │ ├── r │ │ │ │ ├── r.contribution.js │ │ │ │ └── r.js │ │ │ ├── razor │ │ │ │ ├── razor.contribution.js │ │ │ │ └── razor.js │ │ │ ├── redis │ │ │ │ ├── redis.contribution.js │ │ │ │ └── redis.js │ │ │ ├── redshift │ │ │ │ ├── redshift.contribution.js │ │ │ │ └── redshift.js │ │ │ ├── restructuredtext │ │ │ │ ├── restructuredtext.contribution.js │ │ │ │ └── restructuredtext.js │ │ │ ├── ruby │ │ │ │ ├── ruby.contribution.js │ │ │ │ └── ruby.js │ │ │ ├── rust │ │ │ │ ├── rust.contribution.js │ │ │ │ └── rust.js │ │ │ ├── sb │ │ │ │ ├── sb.contribution.js │ │ │ │ └── sb.js │ │ │ ├── scala │ │ │ │ ├── scala.contribution.js │ │ │ │ └── scala.js │ │ │ ├── scheme │ │ │ │ ├── scheme.contribution.js │ │ │ │ └── scheme.js │ │ │ ├── scss │ │ │ │ ├── scss.contribution.js │ │ │ │ └── scss.js │ │ │ ├── shell │ │ │ │ ├── shell.contribution.js │ │ │ │ └── shell.js │ │ │ ├── solidity │ │ │ │ ├── solidity.contribution.js │ │ │ │ └── solidity.js │ │ │ ├── sophia │ │ │ │ ├── sophia.contribution.js │ │ │ │ └── sophia.js │ │ │ ├── sparql │ │ │ │ ├── sparql.contribution.js │ │ │ │ └── sparql.js │ │ │ ├── sql │ │ │ │ ├── sql.contribution.js │ │ │ │ └── sql.js │ │ │ ├── st │ │ │ │ ├── st.contribution.js │ │ │ │ └── st.js │ │ │ ├── swift │ │ │ │ ├── swift.contribution.js │ │ │ │ └── swift.js │ │ │ ├── systemverilog │ │ │ │ ├── systemverilog.contribution.js │ │ │ │ └── systemverilog.js │ │ │ ├── tcl │ │ │ │ ├── tcl.contribution.js │ │ │ │ └── tcl.js │ │ │ ├── twig │ │ │ │ ├── twig.contribution.js │ │ │ │ └── twig.js │ │ │ ├── typescript │ │ │ │ ├── typescript.contribution.js │ │ │ │ └── typescript.js │ │ │ ├── vb │ │ │ │ ├── vb.contribution.js │ │ │ │ └── vb.js │ │ │ ├── xml │ │ │ │ ├── xml.contribution.js │ │ │ │ └── xml.js │ │ │ └── yaml │ │ │ │ ├── yaml.contribution.js │ │ │ │ └── yaml.js │ │ │ ├── editor │ │ │ ├── browser │ │ │ │ ├── config │ │ │ │ │ ├── charWidthReader.js │ │ │ │ │ ├── domFontInfo.js │ │ │ │ │ ├── editorConfiguration.js │ │ │ │ │ ├── elementSizeObserver.js │ │ │ │ │ ├── fontMeasurements.js │ │ │ │ │ ├── migrateOptions.js │ │ │ │ │ └── tabFocus.js │ │ │ │ ├── controller │ │ │ │ │ ├── mouseHandler.js │ │ │ │ │ ├── mouseTarget.js │ │ │ │ │ ├── pointerHandler.js │ │ │ │ │ ├── textAreaHandler.css │ │ │ │ │ ├── textAreaHandler.js │ │ │ │ │ ├── textAreaInput.js │ │ │ │ │ └── textAreaState.js │ │ │ │ ├── coreCommands.js │ │ │ │ ├── dnd.js │ │ │ │ ├── editorBrowser.js │ │ │ │ ├── editorDom.js │ │ │ │ ├── editorExtensions.js │ │ │ │ ├── services │ │ │ │ │ ├── abstractCodeEditorService.js │ │ │ │ │ ├── bulkEditService.js │ │ │ │ │ ├── codeEditorService.js │ │ │ │ │ ├── editorWorkerService.js │ │ │ │ │ ├── markerDecorations.js │ │ │ │ │ ├── openerService.js │ │ │ │ │ └── webWorker.js │ │ │ │ ├── stableEditorScroll.js │ │ │ │ ├── view.js │ │ │ │ ├── view │ │ │ │ │ ├── domLineBreaksComputer.js │ │ │ │ │ ├── dynamicViewOverlay.js │ │ │ │ │ ├── renderingContext.js │ │ │ │ │ ├── viewController.js │ │ │ │ │ ├── viewLayer.js │ │ │ │ │ ├── viewOverlays.js │ │ │ │ │ ├── viewPart.js │ │ │ │ │ └── viewUserInputEvents.js │ │ │ │ ├── viewParts │ │ │ │ │ ├── blockDecorations │ │ │ │ │ │ ├── blockDecorations.css │ │ │ │ │ │ └── blockDecorations.js │ │ │ │ │ ├── contentWidgets │ │ │ │ │ │ └── contentWidgets.js │ │ │ │ │ ├── currentLineHighlight │ │ │ │ │ │ ├── currentLineHighlight.css │ │ │ │ │ │ └── currentLineHighlight.js │ │ │ │ │ ├── decorations │ │ │ │ │ │ ├── decorations.css │ │ │ │ │ │ └── decorations.js │ │ │ │ │ ├── editorScrollbar │ │ │ │ │ │ └── editorScrollbar.js │ │ │ │ │ ├── glyphMargin │ │ │ │ │ │ ├── glyphMargin.css │ │ │ │ │ │ └── glyphMargin.js │ │ │ │ │ ├── indentGuides │ │ │ │ │ │ ├── indentGuides.css │ │ │ │ │ │ └── indentGuides.js │ │ │ │ │ ├── lineNumbers │ │ │ │ │ │ ├── lineNumbers.css │ │ │ │ │ │ └── lineNumbers.js │ │ │ │ │ ├── lines │ │ │ │ │ │ ├── rangeUtil.js │ │ │ │ │ │ ├── viewLine.js │ │ │ │ │ │ ├── viewLines.css │ │ │ │ │ │ └── viewLines.js │ │ │ │ │ ├── linesDecorations │ │ │ │ │ │ ├── linesDecorations.css │ │ │ │ │ │ └── linesDecorations.js │ │ │ │ │ ├── margin │ │ │ │ │ │ └── margin.js │ │ │ │ │ ├── marginDecorations │ │ │ │ │ │ ├── marginDecorations.css │ │ │ │ │ │ └── marginDecorations.js │ │ │ │ │ ├── minimap │ │ │ │ │ │ ├── minimap.css │ │ │ │ │ │ ├── minimap.js │ │ │ │ │ │ ├── minimapCharRenderer.js │ │ │ │ │ │ ├── minimapCharRendererFactory.js │ │ │ │ │ │ ├── minimapCharSheet.js │ │ │ │ │ │ └── minimapPreBaked.js │ │ │ │ │ ├── overlayWidgets │ │ │ │ │ │ ├── overlayWidgets.css │ │ │ │ │ │ └── overlayWidgets.js │ │ │ │ │ ├── overviewRuler │ │ │ │ │ │ ├── decorationsOverviewRuler.js │ │ │ │ │ │ └── overviewRuler.js │ │ │ │ │ ├── rulers │ │ │ │ │ │ ├── rulers.css │ │ │ │ │ │ └── rulers.js │ │ │ │ │ ├── scrollDecoration │ │ │ │ │ │ ├── scrollDecoration.css │ │ │ │ │ │ └── scrollDecoration.js │ │ │ │ │ ├── selections │ │ │ │ │ │ ├── selections.css │ │ │ │ │ │ └── selections.js │ │ │ │ │ ├── viewCursors │ │ │ │ │ │ ├── viewCursor.js │ │ │ │ │ │ ├── viewCursors.css │ │ │ │ │ │ └── viewCursors.js │ │ │ │ │ └── viewZones │ │ │ │ │ │ └── viewZones.js │ │ │ │ └── widget │ │ │ │ │ ├── codeEditorWidget.js │ │ │ │ │ ├── diffEditorWidget.js │ │ │ │ │ ├── diffNavigator.js │ │ │ │ │ ├── diffReview.js │ │ │ │ │ ├── embeddedCodeEditorWidget.js │ │ │ │ │ ├── inlineDiffMargin.js │ │ │ │ │ └── media │ │ │ │ │ ├── diffEditor.css │ │ │ │ │ ├── diffReview.css │ │ │ │ │ └── editor.css │ │ │ ├── common │ │ │ │ ├── commands │ │ │ │ │ ├── replaceCommand.js │ │ │ │ │ ├── shiftCommand.js │ │ │ │ │ ├── surroundSelectionCommand.js │ │ │ │ │ └── trimTrailingWhitespaceCommand.js │ │ │ │ ├── config │ │ │ │ │ ├── editorConfiguration.js │ │ │ │ │ ├── editorConfigurationSchema.js │ │ │ │ │ ├── editorOptions.js │ │ │ │ │ ├── editorZoom.js │ │ │ │ │ └── fontInfo.js │ │ │ │ ├── core │ │ │ │ │ ├── characterClassifier.js │ │ │ │ │ ├── cursorColumns.js │ │ │ │ │ ├── dimension.js │ │ │ │ │ ├── editOperation.js │ │ │ │ │ ├── editorColorRegistry.js │ │ │ │ │ ├── eolCounter.js │ │ │ │ │ ├── indentation.js │ │ │ │ │ ├── position.js │ │ │ │ │ ├── range.js │ │ │ │ │ ├── rgba.js │ │ │ │ │ ├── selection.js │ │ │ │ │ ├── stringBuilder.js │ │ │ │ │ ├── textChange.js │ │ │ │ │ ├── textModelDefaults.js │ │ │ │ │ ├── wordCharacterClassifier.js │ │ │ │ │ └── wordHelper.js │ │ │ │ ├── cursor │ │ │ │ │ ├── cursor.js │ │ │ │ │ ├── cursorAtomicMoveOperations.js │ │ │ │ │ ├── cursorCollection.js │ │ │ │ │ ├── cursorColumnSelection.js │ │ │ │ │ ├── cursorContext.js │ │ │ │ │ ├── cursorDeleteOperations.js │ │ │ │ │ ├── cursorMoveCommands.js │ │ │ │ │ ├── cursorMoveOperations.js │ │ │ │ │ ├── cursorTypeOperations.js │ │ │ │ │ ├── cursorWordOperations.js │ │ │ │ │ └── oneCursor.js │ │ │ │ ├── cursorCommon.js │ │ │ │ ├── cursorEvents.js │ │ │ │ ├── diff │ │ │ │ │ └── diffComputer.js │ │ │ │ ├── editorAction.js │ │ │ │ ├── editorCommon.js │ │ │ │ ├── editorContextKeys.js │ │ │ │ ├── editorTheme.js │ │ │ │ ├── encodedTokenAttributes.js │ │ │ │ ├── languageFeatureRegistry.js │ │ │ │ ├── languageSelector.js │ │ │ │ ├── languages.js │ │ │ │ ├── languages │ │ │ │ │ ├── autoIndent.js │ │ │ │ │ ├── enterAction.js │ │ │ │ │ ├── language.js │ │ │ │ │ ├── languageConfiguration.js │ │ │ │ │ ├── languageConfigurationRegistry.js │ │ │ │ │ ├── linkComputer.js │ │ │ │ │ ├── modesRegistry.js │ │ │ │ │ ├── nullTokenize.js │ │ │ │ │ ├── supports.js │ │ │ │ │ ├── supports │ │ │ │ │ │ ├── characterPair.js │ │ │ │ │ │ ├── electricCharacter.js │ │ │ │ │ │ ├── indentRules.js │ │ │ │ │ │ ├── inplaceReplaceSupport.js │ │ │ │ │ │ ├── languageBracketsConfiguration.js │ │ │ │ │ │ ├── onEnter.js │ │ │ │ │ │ ├── richEditBrackets.js │ │ │ │ │ │ └── tokenization.js │ │ │ │ │ └── textToHtmlTokenizer.js │ │ │ │ ├── model.js │ │ │ │ ├── model │ │ │ │ │ ├── bracketPairsTextModelPart │ │ │ │ │ │ ├── bracketPairsImpl.js │ │ │ │ │ │ ├── bracketPairsTree │ │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ │ ├── beforeEditPositionMapper.js │ │ │ │ │ │ │ ├── bracketPairsTree.js │ │ │ │ │ │ │ ├── brackets.js │ │ │ │ │ │ │ ├── concat23Trees.js │ │ │ │ │ │ │ ├── length.js │ │ │ │ │ │ │ ├── nodeReader.js │ │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ │ ├── smallImmutableSet.js │ │ │ │ │ │ │ └── tokenizer.js │ │ │ │ │ │ ├── colorizedBracketPairsDecorationProvider.js │ │ │ │ │ │ └── fixBrackets.js │ │ │ │ │ ├── decorationProvider.js │ │ │ │ │ ├── editStack.js │ │ │ │ │ ├── guidesTextModelPart.js │ │ │ │ │ ├── indentationGuesser.js │ │ │ │ │ ├── intervalTree.js │ │ │ │ │ ├── mirrorTextModel.js │ │ │ │ │ ├── pieceTreeTextBuffer │ │ │ │ │ │ ├── pieceTreeBase.js │ │ │ │ │ │ ├── pieceTreeTextBuffer.js │ │ │ │ │ │ ├── pieceTreeTextBufferBuilder.js │ │ │ │ │ │ └── rbTreeBase.js │ │ │ │ │ ├── prefixSumComputer.js │ │ │ │ │ ├── textModel.js │ │ │ │ │ ├── textModelPart.js │ │ │ │ │ ├── textModelSearch.js │ │ │ │ │ ├── textModelTokens.js │ │ │ │ │ ├── tokenizationTextModelPart.js │ │ │ │ │ └── utils.js │ │ │ │ ├── modelLineProjectionData.js │ │ │ │ ├── services │ │ │ │ │ ├── editorBaseApi.js │ │ │ │ │ ├── editorSimpleWorker.js │ │ │ │ │ ├── editorWorker.js │ │ │ │ │ ├── editorWorkerHost.js │ │ │ │ │ ├── getIconClasses.js │ │ │ │ │ ├── getSemanticTokens.js │ │ │ │ │ ├── languageFeatureDebounce.js │ │ │ │ │ ├── languageFeatures.js │ │ │ │ │ ├── languageFeaturesService.js │ │ │ │ │ ├── languageService.js │ │ │ │ │ ├── languagesAssociations.js │ │ │ │ │ ├── languagesRegistry.js │ │ │ │ │ ├── markerDecorations.js │ │ │ │ │ ├── markerDecorationsService.js │ │ │ │ │ ├── model.js │ │ │ │ │ ├── modelService.js │ │ │ │ │ ├── resolverService.js │ │ │ │ │ ├── semanticTokensDto.js │ │ │ │ │ ├── semanticTokensProviderStyling.js │ │ │ │ │ ├── textResourceConfiguration.js │ │ │ │ │ └── unicodeTextModelHighlighter.js │ │ │ │ ├── standalone │ │ │ │ │ └── standaloneEnums.js │ │ │ │ ├── standaloneStrings.js │ │ │ │ ├── textModelBracketPairs.js │ │ │ │ ├── textModelEvents.js │ │ │ │ ├── textModelGuides.js │ │ │ │ ├── tokenizationRegistry.js │ │ │ │ ├── tokenizationTextModelPart.js │ │ │ │ ├── tokens │ │ │ │ │ ├── contiguousMultilineTokens.js │ │ │ │ │ ├── contiguousMultilineTokensBuilder.js │ │ │ │ │ ├── contiguousTokensEditing.js │ │ │ │ │ ├── contiguousTokensStore.js │ │ │ │ │ ├── lineTokens.js │ │ │ │ │ ├── sparseMultilineTokens.js │ │ │ │ │ └── sparseTokensStore.js │ │ │ │ ├── viewEventHandler.js │ │ │ │ ├── viewEvents.js │ │ │ │ ├── viewLayout │ │ │ │ │ ├── lineDecorations.js │ │ │ │ │ ├── linePart.js │ │ │ │ │ ├── linesLayout.js │ │ │ │ │ ├── viewLayout.js │ │ │ │ │ ├── viewLineRenderer.js │ │ │ │ │ └── viewLinesViewportData.js │ │ │ │ ├── viewModel.js │ │ │ │ ├── viewModel │ │ │ │ │ ├── minimapTokensColorTracker.js │ │ │ │ │ ├── modelLineProjection.js │ │ │ │ │ ├── monospaceLineBreaksComputer.js │ │ │ │ │ ├── overviewZoneManager.js │ │ │ │ │ ├── viewContext.js │ │ │ │ │ ├── viewModelDecorations.js │ │ │ │ │ ├── viewModelImpl.js │ │ │ │ │ └── viewModelLines.js │ │ │ │ └── viewModelEventDispatcher.js │ │ │ ├── contrib │ │ │ │ ├── anchorSelect │ │ │ │ │ └── browser │ │ │ │ │ │ ├── anchorSelect.css │ │ │ │ │ │ └── anchorSelect.js │ │ │ │ ├── bracketMatching │ │ │ │ │ └── browser │ │ │ │ │ │ ├── bracketMatching.css │ │ │ │ │ │ └── bracketMatching.js │ │ │ │ ├── caretOperations │ │ │ │ │ └── browser │ │ │ │ │ │ ├── caretOperations.js │ │ │ │ │ │ ├── moveCaretCommand.js │ │ │ │ │ │ └── transpose.js │ │ │ │ ├── clipboard │ │ │ │ │ └── browser │ │ │ │ │ │ └── clipboard.js │ │ │ │ ├── codeAction │ │ │ │ │ └── browser │ │ │ │ │ │ ├── codeAction.js │ │ │ │ │ │ ├── codeActionCommands.js │ │ │ │ │ │ ├── codeActionContributions.js │ │ │ │ │ │ ├── codeActionMenu.js │ │ │ │ │ │ ├── codeActionModel.js │ │ │ │ │ │ ├── codeActionUi.js │ │ │ │ │ │ ├── codeActionWidgetContribution.js │ │ │ │ │ │ ├── lightBulbWidget.css │ │ │ │ │ │ ├── lightBulbWidget.js │ │ │ │ │ │ ├── media │ │ │ │ │ │ └── action.css │ │ │ │ │ │ └── types.js │ │ │ │ ├── codelens │ │ │ │ │ └── browser │ │ │ │ │ │ ├── codeLensCache.js │ │ │ │ │ │ ├── codelens.js │ │ │ │ │ │ ├── codelensController.js │ │ │ │ │ │ ├── codelensWidget.css │ │ │ │ │ │ └── codelensWidget.js │ │ │ │ ├── colorPicker │ │ │ │ │ └── browser │ │ │ │ │ │ ├── color.js │ │ │ │ │ │ ├── colorContributions.js │ │ │ │ │ │ ├── colorDetector.js │ │ │ │ │ │ ├── colorHoverParticipant.js │ │ │ │ │ │ ├── colorPicker.css │ │ │ │ │ │ ├── colorPickerModel.js │ │ │ │ │ │ └── colorPickerWidget.js │ │ │ │ ├── comment │ │ │ │ │ └── browser │ │ │ │ │ │ ├── blockCommentCommand.js │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── lineCommentCommand.js │ │ │ │ ├── contextmenu │ │ │ │ │ └── browser │ │ │ │ │ │ └── contextmenu.js │ │ │ │ ├── copyPaste │ │ │ │ │ └── browser │ │ │ │ │ │ ├── copyPasteContribution.js │ │ │ │ │ │ └── copyPasteController.js │ │ │ │ ├── cursorUndo │ │ │ │ │ └── browser │ │ │ │ │ │ └── cursorUndo.js │ │ │ │ ├── dnd │ │ │ │ │ └── browser │ │ │ │ │ │ ├── dnd.css │ │ │ │ │ │ ├── dnd.js │ │ │ │ │ │ └── dragAndDropCommand.js │ │ │ │ ├── documentSymbols │ │ │ │ │ └── browser │ │ │ │ │ │ ├── documentSymbols.js │ │ │ │ │ │ └── outlineModel.js │ │ │ │ ├── dropIntoEditor │ │ │ │ │ └── browser │ │ │ │ │ │ └── dropIntoEditorContribution.js │ │ │ │ ├── editorState │ │ │ │ │ └── browser │ │ │ │ │ │ ├── editorState.js │ │ │ │ │ │ └── keybindingCancellation.js │ │ │ │ ├── find │ │ │ │ │ └── browser │ │ │ │ │ │ ├── findController.js │ │ │ │ │ │ ├── findDecorations.js │ │ │ │ │ │ ├── findModel.js │ │ │ │ │ │ ├── findOptionsWidget.js │ │ │ │ │ │ ├── findState.js │ │ │ │ │ │ ├── findWidget.css │ │ │ │ │ │ ├── findWidget.js │ │ │ │ │ │ ├── replaceAllCommand.js │ │ │ │ │ │ └── replacePattern.js │ │ │ │ ├── folding │ │ │ │ │ └── browser │ │ │ │ │ │ ├── folding.css │ │ │ │ │ │ ├── folding.js │ │ │ │ │ │ ├── foldingDecorations.js │ │ │ │ │ │ ├── foldingModel.js │ │ │ │ │ │ ├── foldingRanges.js │ │ │ │ │ │ ├── hiddenRangeModel.js │ │ │ │ │ │ ├── indentRangeProvider.js │ │ │ │ │ │ └── syntaxRangeProvider.js │ │ │ │ ├── fontZoom │ │ │ │ │ └── browser │ │ │ │ │ │ └── fontZoom.js │ │ │ │ ├── format │ │ │ │ │ └── browser │ │ │ │ │ │ ├── format.js │ │ │ │ │ │ ├── formatActions.js │ │ │ │ │ │ └── formattingEdit.js │ │ │ │ ├── gotoError │ │ │ │ │ └── browser │ │ │ │ │ │ ├── gotoError.js │ │ │ │ │ │ ├── gotoErrorWidget.js │ │ │ │ │ │ ├── markerNavigationService.js │ │ │ │ │ │ └── media │ │ │ │ │ │ └── gotoErrorWidget.css │ │ │ │ ├── gotoSymbol │ │ │ │ │ └── browser │ │ │ │ │ │ ├── goToCommands.js │ │ │ │ │ │ ├── goToSymbol.js │ │ │ │ │ │ ├── link │ │ │ │ │ │ ├── clickLinkGesture.js │ │ │ │ │ │ ├── goToDefinitionAtPosition.css │ │ │ │ │ │ └── goToDefinitionAtPosition.js │ │ │ │ │ │ ├── peek │ │ │ │ │ │ ├── referencesController.js │ │ │ │ │ │ ├── referencesTree.js │ │ │ │ │ │ ├── referencesWidget.css │ │ │ │ │ │ └── referencesWidget.js │ │ │ │ │ │ ├── referencesModel.js │ │ │ │ │ │ └── symbolNavigation.js │ │ │ │ ├── hover │ │ │ │ │ └── browser │ │ │ │ │ │ ├── contentHover.js │ │ │ │ │ │ ├── getHover.js │ │ │ │ │ │ ├── hover.js │ │ │ │ │ │ ├── hoverOperation.js │ │ │ │ │ │ ├── hoverTypes.js │ │ │ │ │ │ ├── marginHover.js │ │ │ │ │ │ ├── markdownHoverParticipant.js │ │ │ │ │ │ └── markerHoverParticipant.js │ │ │ │ ├── inPlaceReplace │ │ │ │ │ └── browser │ │ │ │ │ │ ├── inPlaceReplace.js │ │ │ │ │ │ └── inPlaceReplaceCommand.js │ │ │ │ ├── indentation │ │ │ │ │ └── browser │ │ │ │ │ │ ├── indentUtils.js │ │ │ │ │ │ └── indentation.js │ │ │ │ ├── inlayHints │ │ │ │ │ └── browser │ │ │ │ │ │ ├── inlayHints.js │ │ │ │ │ │ ├── inlayHintsContribution.js │ │ │ │ │ │ ├── inlayHintsController.js │ │ │ │ │ │ ├── inlayHintsHover.js │ │ │ │ │ │ └── inlayHintsLocations.js │ │ │ │ ├── inlineCompletions │ │ │ │ │ └── browser │ │ │ │ │ │ ├── consts.js │ │ │ │ │ │ ├── ghostText.contribution.js │ │ │ │ │ │ ├── ghostText.css │ │ │ │ │ │ ├── ghostText.js │ │ │ │ │ │ ├── ghostTextController.js │ │ │ │ │ │ ├── ghostTextHoverParticipant.js │ │ │ │ │ │ ├── ghostTextModel.js │ │ │ │ │ │ ├── ghostTextWidget.js │ │ │ │ │ │ ├── inlineCompletionToGhostText.js │ │ │ │ │ │ ├── inlineCompletionsModel.js │ │ │ │ │ │ ├── suggestWidgetInlineCompletionProvider.js │ │ │ │ │ │ ├── suggestWidgetPreviewModel.js │ │ │ │ │ │ └── utils.js │ │ │ │ ├── lineSelection │ │ │ │ │ └── browser │ │ │ │ │ │ └── lineSelection.js │ │ │ │ ├── linesOperations │ │ │ │ │ └── browser │ │ │ │ │ │ ├── copyLinesCommand.js │ │ │ │ │ │ ├── linesOperations.js │ │ │ │ │ │ ├── moveLinesCommand.js │ │ │ │ │ │ └── sortLinesCommand.js │ │ │ │ ├── linkedEditing │ │ │ │ │ └── browser │ │ │ │ │ │ └── linkedEditing.js │ │ │ │ ├── links │ │ │ │ │ └── browser │ │ │ │ │ │ ├── getLinks.js │ │ │ │ │ │ ├── links.css │ │ │ │ │ │ └── links.js │ │ │ │ ├── markdownRenderer │ │ │ │ │ └── browser │ │ │ │ │ │ └── markdownRenderer.js │ │ │ │ ├── message │ │ │ │ │ └── browser │ │ │ │ │ │ ├── messageController.css │ │ │ │ │ │ └── messageController.js │ │ │ │ ├── multicursor │ │ │ │ │ └── browser │ │ │ │ │ │ └── multicursor.js │ │ │ │ ├── parameterHints │ │ │ │ │ └── browser │ │ │ │ │ │ ├── parameterHints.css │ │ │ │ │ │ ├── parameterHints.js │ │ │ │ │ │ ├── parameterHintsModel.js │ │ │ │ │ │ ├── parameterHintsWidget.js │ │ │ │ │ │ └── provideSignatureHelp.js │ │ │ │ ├── peekView │ │ │ │ │ └── browser │ │ │ │ │ │ ├── media │ │ │ │ │ │ └── peekViewWidget.css │ │ │ │ │ │ └── peekView.js │ │ │ │ ├── quickAccess │ │ │ │ │ └── browser │ │ │ │ │ │ ├── commandsQuickAccess.js │ │ │ │ │ │ ├── editorNavigationQuickAccess.js │ │ │ │ │ │ ├── gotoLineQuickAccess.js │ │ │ │ │ │ └── gotoSymbolQuickAccess.js │ │ │ │ ├── readOnlyMessage │ │ │ │ │ └── browser │ │ │ │ │ │ └── contribution.js │ │ │ │ ├── rename │ │ │ │ │ └── browser │ │ │ │ │ │ ├── rename.js │ │ │ │ │ │ ├── renameInputField.css │ │ │ │ │ │ └── renameInputField.js │ │ │ │ ├── smartSelect │ │ │ │ │ └── browser │ │ │ │ │ │ ├── bracketSelections.js │ │ │ │ │ │ ├── smartSelect.js │ │ │ │ │ │ └── wordSelections.js │ │ │ │ ├── snippet │ │ │ │ │ └── browser │ │ │ │ │ │ ├── snippetController2.js │ │ │ │ │ │ ├── snippetParser.js │ │ │ │ │ │ ├── snippetSession.css │ │ │ │ │ │ ├── snippetSession.js │ │ │ │ │ │ └── snippetVariables.js │ │ │ │ ├── stickyScroll │ │ │ │ │ └── browser │ │ │ │ │ │ └── stickyScroll.js │ │ │ │ ├── suggest │ │ │ │ │ └── browser │ │ │ │ │ │ ├── completionModel.js │ │ │ │ │ │ ├── media │ │ │ │ │ │ └── suggest.css │ │ │ │ │ │ ├── suggest.js │ │ │ │ │ │ ├── suggestAlternatives.js │ │ │ │ │ │ ├── suggestCommitCharacters.js │ │ │ │ │ │ ├── suggestController.js │ │ │ │ │ │ ├── suggestInlineCompletions.js │ │ │ │ │ │ ├── suggestMemory.js │ │ │ │ │ │ ├── suggestModel.js │ │ │ │ │ │ ├── suggestOvertypingCapturer.js │ │ │ │ │ │ ├── suggestWidget.js │ │ │ │ │ │ ├── suggestWidgetDetails.js │ │ │ │ │ │ ├── suggestWidgetRenderer.js │ │ │ │ │ │ ├── suggestWidgetStatus.js │ │ │ │ │ │ ├── wordContextKey.js │ │ │ │ │ │ └── wordDistance.js │ │ │ │ ├── symbolIcons │ │ │ │ │ └── browser │ │ │ │ │ │ └── symbolIcons.js │ │ │ │ ├── toggleTabFocusMode │ │ │ │ │ └── browser │ │ │ │ │ │ └── toggleTabFocusMode.js │ │ │ │ ├── tokenization │ │ │ │ │ └── browser │ │ │ │ │ │ └── tokenization.js │ │ │ │ ├── unicodeHighlighter │ │ │ │ │ └── browser │ │ │ │ │ │ ├── bannerController.css │ │ │ │ │ │ ├── bannerController.js │ │ │ │ │ │ ├── unicodeHighlighter.css │ │ │ │ │ │ └── unicodeHighlighter.js │ │ │ │ ├── unusualLineTerminators │ │ │ │ │ └── browser │ │ │ │ │ │ └── unusualLineTerminators.js │ │ │ │ ├── viewportSemanticTokens │ │ │ │ │ └── browser │ │ │ │ │ │ └── viewportSemanticTokens.js │ │ │ │ ├── wordHighlighter │ │ │ │ │ └── browser │ │ │ │ │ │ └── wordHighlighter.js │ │ │ │ ├── wordOperations │ │ │ │ │ └── browser │ │ │ │ │ │ └── wordOperations.js │ │ │ │ ├── wordPartOperations │ │ │ │ │ └── browser │ │ │ │ │ │ └── wordPartOperations.js │ │ │ │ └── zoneWidget │ │ │ │ │ └── browser │ │ │ │ │ ├── zoneWidget.css │ │ │ │ │ └── zoneWidget.js │ │ │ ├── edcore.main.js │ │ │ ├── editor.all.js │ │ │ ├── editor.api.d.ts │ │ │ ├── editor.api.js │ │ │ ├── editor.main.js │ │ │ ├── editor.worker.js │ │ │ └── standalone │ │ │ │ ├── browser │ │ │ │ ├── accessibilityHelp │ │ │ │ │ ├── accessibilityHelp.css │ │ │ │ │ └── accessibilityHelp.js │ │ │ │ ├── colorizer.js │ │ │ │ ├── iPadShowKeyboard │ │ │ │ │ ├── iPadShowKeyboard.css │ │ │ │ │ └── iPadShowKeyboard.js │ │ │ │ ├── inspectTokens │ │ │ │ │ ├── inspectTokens.css │ │ │ │ │ └── inspectTokens.js │ │ │ │ ├── quickAccess │ │ │ │ │ ├── standaloneCommandsQuickAccess.js │ │ │ │ │ ├── standaloneGotoLineQuickAccess.js │ │ │ │ │ ├── standaloneGotoSymbolQuickAccess.js │ │ │ │ │ └── standaloneHelpQuickAccess.js │ │ │ │ ├── quickInput │ │ │ │ │ ├── standaloneQuickInput.css │ │ │ │ │ └── standaloneQuickInputService.js │ │ │ │ ├── referenceSearch │ │ │ │ │ └── standaloneReferenceSearch.js │ │ │ │ ├── standalone-tokens.css │ │ │ │ ├── standaloneCodeEditor.js │ │ │ │ ├── standaloneCodeEditorService.js │ │ │ │ ├── standaloneEditor.js │ │ │ │ ├── standaloneLanguages.js │ │ │ │ ├── standaloneLayoutService.js │ │ │ │ ├── standaloneServices.js │ │ │ │ ├── standaloneThemeService.js │ │ │ │ └── toggleHighContrast │ │ │ │ │ └── toggleHighContrast.js │ │ │ │ └── common │ │ │ │ ├── monarch │ │ │ │ ├── monarchCommon.js │ │ │ │ ├── monarchCompile.js │ │ │ │ ├── monarchLexer.js │ │ │ │ └── monarchTypes.js │ │ │ │ ├── standaloneTheme.js │ │ │ │ └── themes.js │ │ │ ├── language │ │ │ ├── css │ │ │ │ ├── css.worker.js │ │ │ │ ├── cssMode.js │ │ │ │ └── monaco.contribution.js │ │ │ ├── html │ │ │ │ ├── html.worker.js │ │ │ │ ├── htmlMode.js │ │ │ │ └── monaco.contribution.js │ │ │ ├── json │ │ │ │ ├── json.worker.js │ │ │ │ ├── jsonMode.js │ │ │ │ └── monaco.contribution.js │ │ │ └── typescript │ │ │ │ ├── monaco.contribution.js │ │ │ │ ├── ts.worker.js │ │ │ │ └── tsMode.js │ │ │ ├── nls.js │ │ │ └── platform │ │ │ ├── accessibility │ │ │ ├── browser │ │ │ │ └── accessibilityService.js │ │ │ └── common │ │ │ │ └── accessibility.js │ │ │ ├── action │ │ │ └── common │ │ │ │ └── action.js │ │ │ ├── actions │ │ │ ├── browser │ │ │ │ ├── menuEntryActionViewItem.css │ │ │ │ └── menuEntryActionViewItem.js │ │ │ └── common │ │ │ │ ├── actions.js │ │ │ │ └── menuService.js │ │ │ ├── clipboard │ │ │ ├── browser │ │ │ │ └── clipboardService.js │ │ │ └── common │ │ │ │ └── clipboardService.js │ │ │ ├── commands │ │ │ └── common │ │ │ │ └── commands.js │ │ │ ├── configuration │ │ │ └── common │ │ │ │ ├── configuration.js │ │ │ │ ├── configurationModels.js │ │ │ │ ├── configurationRegistry.js │ │ │ │ └── configurations.js │ │ │ ├── contextkey │ │ │ ├── browser │ │ │ │ └── contextKeyService.js │ │ │ └── common │ │ │ │ ├── contextkey.js │ │ │ │ └── contextkeys.js │ │ │ ├── contextview │ │ │ └── browser │ │ │ │ ├── contextMenuHandler.js │ │ │ │ ├── contextMenuService.js │ │ │ │ ├── contextView.js │ │ │ │ └── contextViewService.js │ │ │ ├── dialogs │ │ │ └── common │ │ │ │ └── dialogs.js │ │ │ ├── dnd │ │ │ └── browser │ │ │ │ └── dnd.js │ │ │ ├── editor │ │ │ └── common │ │ │ │ └── editor.js │ │ │ ├── environment │ │ │ └── common │ │ │ │ └── environment.js │ │ │ ├── extensions │ │ │ └── common │ │ │ │ └── extensions.js │ │ │ ├── files │ │ │ └── common │ │ │ │ └── files.js │ │ │ ├── history │ │ │ └── browser │ │ │ │ ├── contextScopedHistoryWidget.js │ │ │ │ └── historyWidgetKeybindingHint.js │ │ │ ├── instantiation │ │ │ └── common │ │ │ │ ├── descriptors.js │ │ │ │ ├── extensions.js │ │ │ │ ├── graph.js │ │ │ │ ├── instantiation.js │ │ │ │ ├── instantiationService.js │ │ │ │ └── serviceCollection.js │ │ │ ├── jsonschemas │ │ │ └── common │ │ │ │ └── jsonContributionRegistry.js │ │ │ ├── keybinding │ │ │ └── common │ │ │ │ ├── abstractKeybindingService.js │ │ │ │ ├── baseResolvedKeybinding.js │ │ │ │ ├── keybinding.js │ │ │ │ ├── keybindingResolver.js │ │ │ │ ├── keybindingsRegistry.js │ │ │ │ ├── resolvedKeybindingItem.js │ │ │ │ └── usLayoutResolvedKeybinding.js │ │ │ ├── label │ │ │ └── common │ │ │ │ └── label.js │ │ │ ├── layout │ │ │ └── browser │ │ │ │ └── layoutService.js │ │ │ ├── list │ │ │ └── browser │ │ │ │ └── listService.js │ │ │ ├── log │ │ │ └── common │ │ │ │ └── log.js │ │ │ ├── markers │ │ │ └── common │ │ │ │ ├── markerService.js │ │ │ │ └── markers.js │ │ │ ├── notification │ │ │ └── common │ │ │ │ └── notification.js │ │ │ ├── opener │ │ │ ├── browser │ │ │ │ └── link.js │ │ │ └── common │ │ │ │ └── opener.js │ │ │ ├── policy │ │ │ └── common │ │ │ │ └── policy.js │ │ │ ├── progress │ │ │ └── common │ │ │ │ └── progress.js │ │ │ ├── quickinput │ │ │ ├── browser │ │ │ │ ├── commandsQuickAccess.js │ │ │ │ ├── helpQuickAccess.js │ │ │ │ ├── pickerQuickAccess.js │ │ │ │ ├── quickAccess.js │ │ │ │ └── quickInput.js │ │ │ └── common │ │ │ │ ├── quickAccess.js │ │ │ │ └── quickInput.js │ │ │ ├── registry │ │ │ └── common │ │ │ │ └── platform.js │ │ │ ├── severityIcon │ │ │ └── common │ │ │ │ └── severityIcon.js │ │ │ ├── storage │ │ │ └── common │ │ │ │ └── storage.js │ │ │ ├── telemetry │ │ │ └── common │ │ │ │ ├── gdprTypings.js │ │ │ │ └── telemetry.js │ │ │ ├── theme │ │ │ ├── browser │ │ │ │ └── iconsStyleSheet.js │ │ │ └── common │ │ │ │ ├── colorRegistry.js │ │ │ │ ├── iconRegistry.js │ │ │ │ ├── styler.js │ │ │ │ ├── theme.js │ │ │ │ └── themeService.js │ │ │ ├── undoRedo │ │ │ └── common │ │ │ │ ├── undoRedo.js │ │ │ │ └── undoRedoService.js │ │ │ └── workspace │ │ │ └── common │ │ │ ├── workspace.js │ │ │ └── workspaceTrust.js │ ├── min-maps │ │ └── vs │ │ │ ├── base │ │ │ ├── common │ │ │ │ └── worker │ │ │ │ │ ├── simpleWorker.nls.de.js.map │ │ │ │ │ ├── simpleWorker.nls.es.js.map │ │ │ │ │ ├── simpleWorker.nls.fr.js.map │ │ │ │ │ ├── simpleWorker.nls.it.js.map │ │ │ │ │ ├── simpleWorker.nls.ja.js.map │ │ │ │ │ ├── simpleWorker.nls.js.map │ │ │ │ │ ├── simpleWorker.nls.ko.js.map │ │ │ │ │ ├── simpleWorker.nls.ru.js.map │ │ │ │ │ ├── simpleWorker.nls.zh-cn.js.map │ │ │ │ │ └── simpleWorker.nls.zh-tw.js.map │ │ │ └── worker │ │ │ │ └── workerMain.js.map │ │ │ ├── editor │ │ │ ├── editor.main.js.map │ │ │ ├── editor.main.nls.de.js.map │ │ │ ├── editor.main.nls.es.js.map │ │ │ ├── editor.main.nls.fr.js.map │ │ │ ├── editor.main.nls.it.js.map │ │ │ ├── editor.main.nls.ja.js.map │ │ │ ├── editor.main.nls.js.map │ │ │ ├── editor.main.nls.ko.js.map │ │ │ ├── editor.main.nls.ru.js.map │ │ │ ├── editor.main.nls.zh-cn.js.map │ │ │ └── editor.main.nls.zh-tw.js.map │ │ │ └── loader.js.map │ ├── min │ │ └── vs │ │ │ ├── base │ │ │ ├── browser │ │ │ │ └── ui │ │ │ │ │ └── codicons │ │ │ │ │ └── codicon │ │ │ │ │ └── codicon.ttf │ │ │ ├── common │ │ │ │ └── worker │ │ │ │ │ ├── simpleWorker.nls.de.js │ │ │ │ │ ├── simpleWorker.nls.es.js │ │ │ │ │ ├── simpleWorker.nls.fr.js │ │ │ │ │ ├── simpleWorker.nls.it.js │ │ │ │ │ ├── simpleWorker.nls.ja.js │ │ │ │ │ ├── simpleWorker.nls.js │ │ │ │ │ ├── simpleWorker.nls.ko.js │ │ │ │ │ ├── simpleWorker.nls.ru.js │ │ │ │ │ ├── simpleWorker.nls.zh-cn.js │ │ │ │ │ └── simpleWorker.nls.zh-tw.js │ │ │ └── worker │ │ │ │ └── workerMain.js │ │ │ ├── basic-languages │ │ │ ├── abap │ │ │ │ └── abap.js │ │ │ ├── apex │ │ │ │ └── apex.js │ │ │ ├── azcli │ │ │ │ └── azcli.js │ │ │ ├── bat │ │ │ │ └── bat.js │ │ │ ├── bicep │ │ │ │ └── bicep.js │ │ │ ├── cameligo │ │ │ │ └── cameligo.js │ │ │ ├── clojure │ │ │ │ └── clojure.js │ │ │ ├── coffee │ │ │ │ └── coffee.js │ │ │ ├── cpp │ │ │ │ └── cpp.js │ │ │ ├── csharp │ │ │ │ └── csharp.js │ │ │ ├── csp │ │ │ │ └── csp.js │ │ │ ├── css │ │ │ │ └── css.js │ │ │ ├── cypher │ │ │ │ └── cypher.js │ │ │ ├── dart │ │ │ │ └── dart.js │ │ │ ├── dockerfile │ │ │ │ └── dockerfile.js │ │ │ ├── ecl │ │ │ │ └── ecl.js │ │ │ ├── elixir │ │ │ │ └── elixir.js │ │ │ ├── flow9 │ │ │ │ └── flow9.js │ │ │ ├── freemarker2 │ │ │ │ └── freemarker2.js │ │ │ ├── fsharp │ │ │ │ └── fsharp.js │ │ │ ├── go │ │ │ │ └── go.js │ │ │ ├── graphql │ │ │ │ └── graphql.js │ │ │ ├── handlebars │ │ │ │ └── handlebars.js │ │ │ ├── hcl │ │ │ │ └── hcl.js │ │ │ ├── html │ │ │ │ └── html.js │ │ │ ├── ini │ │ │ │ └── ini.js │ │ │ ├── java │ │ │ │ └── java.js │ │ │ ├── javascript │ │ │ │ └── javascript.js │ │ │ ├── julia │ │ │ │ └── julia.js │ │ │ ├── kotlin │ │ │ │ └── kotlin.js │ │ │ ├── less │ │ │ │ └── less.js │ │ │ ├── lexon │ │ │ │ └── lexon.js │ │ │ ├── liquid │ │ │ │ └── liquid.js │ │ │ ├── lua │ │ │ │ └── lua.js │ │ │ ├── m3 │ │ │ │ └── m3.js │ │ │ ├── markdown │ │ │ │ └── markdown.js │ │ │ ├── mips │ │ │ │ └── mips.js │ │ │ ├── msdax │ │ │ │ └── msdax.js │ │ │ ├── mysql │ │ │ │ └── mysql.js │ │ │ ├── objective-c │ │ │ │ └── objective-c.js │ │ │ ├── pascal │ │ │ │ └── pascal.js │ │ │ ├── pascaligo │ │ │ │ └── pascaligo.js │ │ │ ├── perl │ │ │ │ └── perl.js │ │ │ ├── pgsql │ │ │ │ └── pgsql.js │ │ │ ├── php │ │ │ │ └── php.js │ │ │ ├── pla │ │ │ │ └── pla.js │ │ │ ├── postiats │ │ │ │ └── postiats.js │ │ │ ├── powerquery │ │ │ │ └── powerquery.js │ │ │ ├── powershell │ │ │ │ └── powershell.js │ │ │ ├── protobuf │ │ │ │ └── protobuf.js │ │ │ ├── pug │ │ │ │ └── pug.js │ │ │ ├── python │ │ │ │ └── python.js │ │ │ ├── qsharp │ │ │ │ └── qsharp.js │ │ │ ├── r │ │ │ │ └── r.js │ │ │ ├── razor │ │ │ │ └── razor.js │ │ │ ├── redis │ │ │ │ └── redis.js │ │ │ ├── redshift │ │ │ │ └── redshift.js │ │ │ ├── restructuredtext │ │ │ │ └── restructuredtext.js │ │ │ ├── ruby │ │ │ │ └── ruby.js │ │ │ ├── rust │ │ │ │ └── rust.js │ │ │ ├── sb │ │ │ │ └── sb.js │ │ │ ├── scala │ │ │ │ └── scala.js │ │ │ ├── scheme │ │ │ │ └── scheme.js │ │ │ ├── scss │ │ │ │ └── scss.js │ │ │ ├── shell │ │ │ │ └── shell.js │ │ │ ├── solidity │ │ │ │ └── solidity.js │ │ │ ├── sophia │ │ │ │ └── sophia.js │ │ │ ├── sparql │ │ │ │ └── sparql.js │ │ │ ├── sql │ │ │ │ └── sql.js │ │ │ ├── st │ │ │ │ └── st.js │ │ │ ├── swift │ │ │ │ └── swift.js │ │ │ ├── systemverilog │ │ │ │ └── systemverilog.js │ │ │ ├── tcl │ │ │ │ └── tcl.js │ │ │ ├── twig │ │ │ │ └── twig.js │ │ │ ├── typescript │ │ │ │ └── typescript.js │ │ │ ├── vb │ │ │ │ └── vb.js │ │ │ ├── xml │ │ │ │ └── xml.js │ │ │ └── yaml │ │ │ │ └── yaml.js │ │ │ ├── editor │ │ │ ├── editor.main.css │ │ │ ├── editor.main.js │ │ │ ├── editor.main.nls.de.js │ │ │ ├── editor.main.nls.es.js │ │ │ ├── editor.main.nls.fr.js │ │ │ ├── editor.main.nls.it.js │ │ │ ├── editor.main.nls.ja.js │ │ │ ├── editor.main.nls.js │ │ │ ├── editor.main.nls.ko.js │ │ │ ├── editor.main.nls.ru.js │ │ │ ├── editor.main.nls.zh-cn.js │ │ │ └── editor.main.nls.zh-tw.js │ │ │ ├── language │ │ │ ├── css │ │ │ │ ├── cssMode.js │ │ │ │ └── cssWorker.js │ │ │ ├── html │ │ │ │ ├── htmlMode.js │ │ │ │ └── htmlWorker.js │ │ │ ├── json │ │ │ │ ├── jsonMode.js │ │ │ │ └── jsonWorker.js │ │ │ └── typescript │ │ │ │ ├── tsMode.js │ │ │ │ └── tsWorker.js │ │ │ └── loader.js │ ├── monaco.d.ts │ └── package.json └── split.js │ ├── LICENSE.txt │ ├── README.md │ ├── dist │ ├── split.es.js │ ├── split.js │ ├── split.min.js │ └── split.min.js.map │ ├── index.d.ts │ └── package.json ├── onnx-1.13.0-cp310-cp310-emscripten_3_1_27_wasm32.whl ├── onnx_script-0.1.0-py3-none-any.whl ├── package-lock.json ├── package.json └── pyodideWorker.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/README.md -------------------------------------------------------------------------------- /demo/code-editor-embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/code-editor-embed.html -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/model-vis-embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/model-vis-embed.html -------------------------------------------------------------------------------- /demo/netron-6.4.0/.github/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.github/DEVELOPMENT.md -------------------------------------------------------------------------------- /demo/netron-6.4.0/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /demo/netron-6.4.0/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /demo/netron-6.4.0/.github/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.github/logo-dark.svg -------------------------------------------------------------------------------- /demo/netron-6.4.0/.github/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.github/logo-light.svg -------------------------------------------------------------------------------- /demo/netron-6.4.0/.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.github/screenshot.png -------------------------------------------------------------------------------- /demo/netron-6.4.0/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.github/workflows/build.yml -------------------------------------------------------------------------------- /demo/netron-6.4.0/.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.github/workflows/publish.yml -------------------------------------------------------------------------------- /demo/netron-6.4.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.gitignore -------------------------------------------------------------------------------- /demo/netron-6.4.0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.vscode/launch.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/.vscode/settings.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/CITATION.cff -------------------------------------------------------------------------------- /demo/netron-6.4.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/LICENSE -------------------------------------------------------------------------------- /demo/netron-6.4.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/Makefile -------------------------------------------------------------------------------- /demo/netron-6.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/README.md -------------------------------------------------------------------------------- /demo/netron-6.4.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/package.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/background.png -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/background.svg -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/background@2x.png -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/cask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/cask.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/icon.html -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/icon.icns -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/icon.icns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/icon.icns.svg -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/icon.ico -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/icon.png -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/icon.svg -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/notarize.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/python.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/setup.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/version.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/web.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/publish/winget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/publish/winget.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/__init__.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/acuity-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/acuity-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/acuity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/acuity.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/app.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/armnn-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/armnn-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/armnn-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/armnn-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/armnn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/armnn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/barracuda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/barracuda.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/base.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/bigdl-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/bigdl-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/bigdl-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/bigdl-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/bigdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/bigdl.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/caffe-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/caffe-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/caffe-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/caffe-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/caffe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/caffe.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/caffe2-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/caffe2-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/caffe2-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/caffe2-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/caffe2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/caffe2.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/cambricon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/cambricon.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/circle-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/circle-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/circle-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/circle-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/circle.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/cntk-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/cntk-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/cntk-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/cntk-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/cntk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/cntk.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/coreml-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/coreml-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/coreml-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/coreml-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/coreml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/coreml.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dagre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dagre.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/darknet-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/darknet-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/darknet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/darknet.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dialog.css -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dialog.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dl4j-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dl4j-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dl4j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dl4j.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dlc-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dlc-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dlc-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dlc-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dlc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dlc.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dnn-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dnn-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dnn-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dnn-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/dnn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/dnn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/electron.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/favicon.ico -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/flatbuffers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/flatbuffers.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/flax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/flax.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/flexbuffers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/flexbuffers.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/flux-metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/flux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/flux.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/grapher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/grapher.css -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/grapher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/grapher.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/hdf5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/hdf5.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/hickle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/hickle.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/icon.png -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/imgdnn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/imgdnn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/index.html -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/index.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/json.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/keras-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/keras-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/keras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/keras.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/kmodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/kmodel.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/lasagne-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/lasagne-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/lasagne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/lasagne.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/lightgbm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/lightgbm.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mediapipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mediapipe.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/megengine-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/megengine-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/megengine-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/megengine-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/megengine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/megengine.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mlnet-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mlnet-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mlnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mlnet.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mnn-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mnn-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mnn-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mnn-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mnn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mnn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mslite-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mslite-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mslite-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mslite-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mslite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mslite.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mxnet-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mxnet-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/mxnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/mxnet.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/ncnn-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/ncnn-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/ncnn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/ncnn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/nnabla-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/nnabla-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/nnabla-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/nnabla-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/nnabla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/nnabla.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/nnef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/nnef.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/numpy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/numpy.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/om-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/om-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/om-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/om-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/om.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/om.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/onednn-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/onednn-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/onednn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/onednn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/onnx-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/onnx-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/onnx-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/onnx-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/onnx-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/onnx-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/onnx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/onnx.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/onnx.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/openvino-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/openvino-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/openvino.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/openvino.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/paddle-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/paddle-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/paddle-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/paddle-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/paddle-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/paddle-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/paddle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/paddle.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/pickle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/pickle.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/protobuf.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/python.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/pytorch-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/pytorch-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/pytorch-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/pytorch-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/pytorch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/pytorch.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/pytorch.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/rknn-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/rknn-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/rknn-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/rknn-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/rknn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/rknn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/server.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/server.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/sklearn-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/sklearn-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/sklearn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/sklearn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tar.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tengine-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tengine-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tengine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tengine.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tensorrt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tensorrt.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/text.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tf-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tf-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tf-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tf-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tf.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tflite-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tflite-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tflite-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tflite-schema.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tflite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tflite.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tnn-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tnn-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/tnn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/tnn.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/torch-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/torch-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/torch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/torch.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/uff-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/uff-metadata.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/uff-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/uff-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/uff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/uff.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/view.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/weka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/weka.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/xml.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/xmodel-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/xmodel-proto.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/xmodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/xmodel.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/source/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/source/zip.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/test/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/test/backend.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/test/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/test/models.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/test/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/test/models.json -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/armnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/armnn -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/bigdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/bigdl -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/caffe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/caffe -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/circle -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/circle_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/circle_script.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/cntk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/cntk -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/coreml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/coreml -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/dlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/dlc -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/dlc.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/dlc.fbs -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/dnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/dnn -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/dnn.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/dnn.proto -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/flatc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/flatc.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/keras_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/keras_metadata.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/mediapipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/mediapipe -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/megengine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/megengine -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/megengine_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/megengine_script.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/mnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/mnn -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/mslite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/mslite -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/mslite_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/mslite_metadata.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/nnabla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/nnabla -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/nnabla_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/nnabla_script.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/om: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/om -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/om.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/om.proto -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/onnx -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/onnx_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/onnx_metadata.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/paddle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/paddle -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/protoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/protoc.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/pytorch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/pytorch -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/pytorch_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/pytorch_metadata.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/rknn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/rknn -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/rknn.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/rknn.fbs -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/sklearn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/sklearn -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/sklearn_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/sklearn_metadata.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/tf -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/tf_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/tf_metadata.py -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/tflite_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/tflite_metadata.js -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/uff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/uff -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/uff.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/uff.proto -------------------------------------------------------------------------------- /demo/netron-6.4.0/tools/xmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/netron-6.4.0/tools/xmodel -------------------------------------------------------------------------------- /demo/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/.package-lock.json -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/CHANGELOG.md -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/LICENSE -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/README.md -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/bundleInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/bundleInfo.json -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/nls.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/nls.metadata.json -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/base/worker/workerMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/base/worker/workerMain.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/base/worker/workerMain.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/base/worker/workerMain.js.map -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/abap/abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/abap/abap.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/apex/apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/apex/apex.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/azcli/azcli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/azcli/azcli.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/bat/bat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/bat/bat.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/bicep/bicep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/bicep/bicep.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/cameligo/cameligo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/cameligo/cameligo.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/clojure/clojure.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/coffee/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/coffee/coffee.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/cpp/cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/cpp/cpp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/csharp/csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/csharp/csharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/csp/csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/csp/csp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/css/css.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/cypher/cypher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/cypher/cypher.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/dart/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/dart/dart.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/ecl/ecl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/elixir/elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/elixir/elixir.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/flow9/flow9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/flow9/flow9.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/fsharp/fsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/fsharp/fsharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/go/go.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/graphql/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/graphql/graphql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/hcl/hcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/hcl/hcl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/html/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/html/html.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/ini/ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/ini/ini.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/java/java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/java/java.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/julia/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/julia/julia.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/kotlin/kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/kotlin/kotlin.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/less/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/less/less.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/lexon/lexon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/lexon/lexon.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/liquid/liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/liquid/liquid.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/lua/lua.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/m3/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/m3/m3.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/markdown/markdown.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/mips/mips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/mips/mips.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/msdax/msdax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/msdax/msdax.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/mysql/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/mysql/mysql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/pascal/pascal.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/perl/perl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/pgsql/pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/pgsql/pgsql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/php/php.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/pla/pla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/pla/pla.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/postiats/postiats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/postiats/postiats.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/protobuf/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/protobuf/protobuf.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/pug/pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/pug/pug.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/python/python.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/qsharp/qsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/qsharp/qsharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/r/r.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/razor/razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/razor/razor.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/redis/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/redis/redis.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/redshift/redshift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/redshift/redshift.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/ruby/ruby.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/rust/rust.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/sb/sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/sb/sb.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/scala/scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/scala/scala.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/scheme/scheme.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/scss/scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/scss/scss.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/shell/shell.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/solidity/solidity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/solidity/solidity.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/sophia/sophia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/sophia/sophia.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/sparql/sparql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/sql/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/sql/sql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/st/st.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/st/st.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/swift/swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/swift/swift.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/tcl/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/tcl/tcl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/twig/twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/twig/twig.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/vb/vb.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/xml/xml.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/basic-languages/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/basic-languages/yaml/yaml.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.js.map -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.de.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.es.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.fr.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.it.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.ja.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.ko.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.ru.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.zh-cn.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/editor/editor.main.nls.zh-tw.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/language/css/cssMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/language/css/cssMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/language/css/cssWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/language/css/cssWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/language/html/htmlMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/language/html/htmlMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/language/html/htmlWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/language/html/htmlWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/language/json/jsonMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/language/json/jsonMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/language/json/jsonWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/language/json/jsonWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/language/typescript/tsMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/language/typescript/tsMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/language/typescript/tsWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/language/typescript/tsWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/dev/vs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/dev/vs/loader.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/metadata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/metadata.d.ts -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/metadata.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/browser.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/canIUse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/canIUse.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/contextmenu.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/defaultWorkerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/defaultWorkerFactory.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/dnd.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/dom.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/dompurify/dompurify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/dompurify/dompurify.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/event.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/fastDomNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/fastDomNode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/formattedTextRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/formattedTextRenderer.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/history.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/iframe.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/keyboardEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/keyboardEvent.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/markdownRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/markdownRenderer.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/mouseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/mouseEvent.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/touch.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/aria/aria.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/aria/aria.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/aria/aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/aria/aria.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/button/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/button/button.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/button/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/button/button.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/dropdown/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/dropdown/dropdown.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/dropdown/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/dropdown/dropdown.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/hover/hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/hover/hover.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/hover/hoverWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/hover/hoverWidget.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/inputbox/inputBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/inputbox/inputBox.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/inputbox/inputBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/inputbox/inputBox.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/list.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/list.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/listPaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/listPaging.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/listView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/listView.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/listWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/listWidget.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/rangeMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/rangeMap.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/rowCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/rowCache.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/splice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/list/splice.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/menu/menu.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/sash/sash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/sash/sash.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/sash/sash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/sash/sash.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/table/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/table/table.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/table/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/table/table.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/table/tableWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/table/tableWidget.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/toggle/toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/toggle/toggle.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/toggle/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/toggle/toggle.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/abstractTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/abstractTree.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/asyncDataTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/asyncDataTree.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/dataTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/dataTree.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/media/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/media/tree.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/objectTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/objectTree.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/tree/tree.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/browser/ui/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/browser/ui/widget.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/actions.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/arrays.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/assert.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/async.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/buffer.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/cache.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/cancellation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/cancellation.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/charCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/charCode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/codicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/codicons.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/collections.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/color.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/comparers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/comparers.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/dataTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/dataTransfer.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/decorators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/decorators.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/diff/diff.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/diff/diffChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/diff/diffChange.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/errorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/errorMessage.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/errors.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/event.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/extpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/extpath.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/filters.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/functional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/functional.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/fuzzyScorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/fuzzyScorer.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/glob.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/hash.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/history.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/htmlContent.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/iconLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/iconLabels.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/idGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/idGenerator.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/iterator.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/jsonSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/jsonSchema.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/keyCodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/keyCodes.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/keybindingLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/keybindingLabels.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/keybindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/keybindings.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/labels.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/lazy.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/lifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/lifecycle.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/linkedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/linkedList.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/map.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/marked/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/marked/marked.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/marshalling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/marshalling.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/marshallingIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/marshallingIds.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/mime.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/navigator.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/network.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/numbers.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/objects.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/observable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/observable.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/observableImpl/base.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/observableImpl/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/observableImpl/logging.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/observableImpl/utils.js: -------------------------------------------------------------------------------- 1 | export const __dummy = 0; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/observableValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/observableValue.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/paging.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/path.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/platform.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/process.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/range.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/resources.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/scrollable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/scrollable.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/search.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/sequence.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/severity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/severity.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/stopwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/stopwatch.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/strings.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/styler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/styler.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/types.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/uint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/uint.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/uri.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/uuid.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/common/worker/simpleWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/common/worker/simpleWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/base/parts/storage/common/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/base/parts/storage/common/storage.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/_.contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/_.contribution.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/abap/abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/abap/abap.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/apex/apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/apex/apex.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/azcli/azcli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/azcli/azcli.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/bat/bat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/bat/bat.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/bicep/bicep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/bicep/bicep.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/cameligo/cameligo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/cameligo/cameligo.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/clojure/clojure.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/coffee/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/coffee/coffee.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/cpp/cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/cpp/cpp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/csharp/csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/csharp/csharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/csp/csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/csp/csp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/css/css.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/cypher/cypher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/cypher/cypher.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/dart/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/dart/dart.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/ecl/ecl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/elixir/elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/elixir/elixir.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/flow9/flow9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/flow9/flow9.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/fsharp/fsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/fsharp/fsharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/go/go.contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/go/go.contribution.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/go/go.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/graphql/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/graphql/graphql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/hcl/hcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/hcl/hcl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/html/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/html/html.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/ini/ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/ini/ini.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/java/java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/java/java.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/julia/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/julia/julia.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/kotlin/kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/kotlin/kotlin.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/less/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/less/less.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/lexon/lexon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/lexon/lexon.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/liquid/liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/liquid/liquid.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/lua/lua.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/m3/m3.contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/m3/m3.contribution.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/m3/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/m3/m3.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/markdown/markdown.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/mips/mips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/mips/mips.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/msdax/msdax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/msdax/msdax.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/mysql/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/mysql/mysql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/pascal/pascal.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/perl/perl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/pgsql/pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/pgsql/pgsql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/php/php.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/pla/pla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/pla/pla.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/postiats/postiats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/postiats/postiats.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/protobuf/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/protobuf/protobuf.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/pug/pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/pug/pug.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/python/python.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/qsharp/qsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/qsharp/qsharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/r/r.contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/r/r.contribution.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/r/r.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/razor/razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/razor/razor.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/redis/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/redis/redis.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/redshift/redshift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/redshift/redshift.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/ruby/ruby.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/rust/rust.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.contribution.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/scala/scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/scala/scala.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/scheme/scheme.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/scss/scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/scss/scss.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/shell/shell.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/solidity/solidity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/solidity/solidity.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/sophia/sophia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/sophia/sophia.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/sparql/sparql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/sql/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/sql/sql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/st/st.contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/st/st.contribution.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/st/st.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/st/st.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/swift/swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/swift/swift.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/tcl/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/tcl/tcl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/twig/twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/twig/twig.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/vb/vb.contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/vb/vb.contribution.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/vb/vb.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/xml/xml.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/basic-languages/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/basic-languages/yaml/yaml.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/config/domFontInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/config/domFontInfo.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/config/tabFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/config/tabFocus.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/coreCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/coreCommands.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/dnd.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/editorBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/editorBrowser.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/editorDom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/editorDom.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/editorExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/editorExtensions.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/services/webWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/services/webWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/stableEditorScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/stableEditorScroll.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/view.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/view/viewController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/view/viewController.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/view/viewLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/view/viewLayer.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/view/viewOverlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/view/viewOverlays.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/view/viewPart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/view/viewPart.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/browser/widget/diffReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/browser/widget/diffReview.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/config/editorOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/config/editorOptions.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/config/editorZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/config/editorZoom.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/config/fontInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/config/fontInfo.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/cursorColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/cursorColumns.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/dimension.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/editOperation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/editOperation.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/eolCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/eolCounter.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/indentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/indentation.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/position.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/range.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/rgba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/rgba.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/selection.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/stringBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/stringBuilder.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/textChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/textChange.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/core/wordHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/core/wordHelper.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/cursor/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/cursor/cursor.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/cursor/cursorContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/cursor/cursorContext.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/cursor/oneCursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/cursor/oneCursor.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/cursorCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/cursorCommon.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/cursorEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/cursorEvents.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/diff/diffComputer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/diff/diffComputer.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/editorAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/editorAction.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/editorCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/editorCommon.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/editorContextKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/editorContextKeys.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/editorTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/editorTheme.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/languageSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/languageSelector.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/languages.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/languages/autoIndent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/languages/autoIndent.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/languages/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/languages/language.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/languages/supports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/languages/supports.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/model.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/model/decorationProvider.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/model/editStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/model/editStack.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/model/intervalTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/model/intervalTree.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/model/textModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/model/textModel.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/model/textModelPart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/model/textModelPart.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/model/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/model/utils.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/services/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/services/model.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/standaloneStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/standaloneStrings.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/textModelEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/textModelEvents.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/textModelGuides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/textModelGuides.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/tokenizationRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/tokenizationRegistry.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/tokenizationTextModelPart.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/tokens/lineTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/tokens/lineTokens.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/viewEventHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/viewEventHandler.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/viewEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/viewEvents.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/viewLayout/linePart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/viewLayout/linePart.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/common/viewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/common/viewModel.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/contrib/dnd/browser/dnd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/contrib/dnd/browser/dnd.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/contrib/dnd/browser/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/contrib/dnd/browser/dnd.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/edcore.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/edcore.main.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/editor.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/editor.all.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/editor.api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/editor.api.d.ts -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/editor.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/editor.api.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/editor.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/editor.main.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/editor.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/editor.worker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/editor/standalone/common/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/editor/standalone/common/themes.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/css/css.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/css/css.worker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/css/cssMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/css/cssMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/css/monaco.contribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/css/monaco.contribution.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/html/html.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/html/html.worker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/html/htmlMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/html/htmlMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/json/json.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/json/json.worker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/json/jsonMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/json/jsonMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/typescript/ts.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/typescript/ts.worker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/language/typescript/tsMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/language/typescript/tsMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/nls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/nls.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/action/common/action.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/actions/common/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/actions/common/actions.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/dialogs/common/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/dialogs/common/dialogs.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/dnd/browser/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/dnd/browser/dnd.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/editor/common/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/editor/common/editor.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/files/common/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/files/common/files.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/label/common/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/label/common/label.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/log/common/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/log/common/log.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/markers/common/markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/markers/common/markers.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/opener/browser/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/opener/browser/link.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/opener/common/opener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/opener/common/opener.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/policy/common/policy.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/storage/common/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/storage/common/storage.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/telemetry/common/gdprTypings.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/theme/common/styler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/theme/common/styler.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/esm/vs/platform/theme/common/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/esm/vs/platform/theme/common/theme.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min-maps/vs/base/worker/workerMain.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min-maps/vs/base/worker/workerMain.js.map -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min-maps/vs/editor/editor.main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min-maps/vs/editor/editor.main.js.map -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min-maps/vs/editor/editor.main.nls.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min-maps/vs/editor/editor.main.nls.js.map -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min-maps/vs/loader.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min-maps/vs/loader.js.map -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/base/worker/workerMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/base/worker/workerMain.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/abap/abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/abap/abap.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/apex/apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/apex/apex.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/azcli/azcli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/azcli/azcli.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/bat/bat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/bat/bat.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/bicep/bicep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/bicep/bicep.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/clojure/clojure.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/coffee/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/coffee/coffee.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/cpp/cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/cpp/cpp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/csharp/csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/csharp/csharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/csp/csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/csp/csp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/css/css.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/cypher/cypher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/cypher/cypher.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/dart/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/dart/dart.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/ecl/ecl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/elixir/elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/elixir/elixir.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/flow9/flow9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/flow9/flow9.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/fsharp/fsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/fsharp/fsharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/go/go.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/graphql/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/graphql/graphql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/hcl/hcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/hcl/hcl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/html/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/html/html.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/ini/ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/ini/ini.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/java/java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/java/java.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/julia/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/julia/julia.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/kotlin/kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/kotlin/kotlin.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/less/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/less/less.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/lexon/lexon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/lexon/lexon.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/liquid/liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/liquid/liquid.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/lua/lua.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/m3/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/m3/m3.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/mips/mips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/mips/mips.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/msdax/msdax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/msdax/msdax.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/mysql/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/mysql/mysql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/pascal/pascal.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/perl/perl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/pgsql/pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/pgsql/pgsql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/php/php.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/pla/pla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/pla/pla.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/pug/pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/pug/pug.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/python/python.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/qsharp/qsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/qsharp/qsharp.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/r/r.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/razor/razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/razor/razor.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/redis/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/redis/redis.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/ruby/ruby.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/rust/rust.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/sb/sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/sb/sb.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/scala/scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/scala/scala.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/scheme/scheme.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/scss/scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/scss/scss.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/shell/shell.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/sophia/sophia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/sophia/sophia.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/sparql/sparql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/sql/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/sql/sql.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/st/st.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/st/st.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/swift/swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/swift/swift.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/tcl/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/tcl/tcl.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/twig/twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/twig/twig.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/vb/vb.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/xml/xml.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/basic-languages/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/basic-languages/yaml/yaml.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.css -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.de.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.es.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.fr.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.it.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.ja.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.ko.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.ru.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.zh-cn.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/editor/editor.main.nls.zh-tw.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/language/css/cssMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/language/css/cssMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/language/css/cssWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/language/css/cssWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/language/html/htmlMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/language/html/htmlMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/language/html/htmlWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/language/html/htmlWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/language/json/jsonMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/language/json/jsonMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/language/json/jsonWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/language/json/jsonWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/language/typescript/tsMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/language/typescript/tsMode.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/language/typescript/tsWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/language/typescript/tsWorker.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/min/vs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/min/vs/loader.js -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/monaco.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/monaco.d.ts -------------------------------------------------------------------------------- /demo/node_modules/monaco-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/monaco-editor/package.json -------------------------------------------------------------------------------- /demo/node_modules/split.js/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/split.js/LICENSE.txt -------------------------------------------------------------------------------- /demo/node_modules/split.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/split.js/README.md -------------------------------------------------------------------------------- /demo/node_modules/split.js/dist/split.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/split.js/dist/split.es.js -------------------------------------------------------------------------------- /demo/node_modules/split.js/dist/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/split.js/dist/split.js -------------------------------------------------------------------------------- /demo/node_modules/split.js/dist/split.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/split.js/dist/split.min.js -------------------------------------------------------------------------------- /demo/node_modules/split.js/dist/split.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/split.js/dist/split.min.js.map -------------------------------------------------------------------------------- /demo/node_modules/split.js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/split.js/index.d.ts -------------------------------------------------------------------------------- /demo/node_modules/split.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/node_modules/split.js/package.json -------------------------------------------------------------------------------- /demo/onnx-1.13.0-cp310-cp310-emscripten_3_1_27_wasm32.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/onnx-1.13.0-cp310-cp310-emscripten_3_1_27_wasm32.whl -------------------------------------------------------------------------------- /demo/onnx_script-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/onnx_script-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/pyodideWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephrocca/onnxscript-editor/HEAD/demo/pyodideWorker.js --------------------------------------------------------------------------------