diff --git a/extensions/javascript/test/colorize-fixtures/test.js b/extensions/javascript/test/colorize-fixtures/test.js
new file mode 100644
index 00000000000..aa4f58de32d
--- /dev/null
+++ b/extensions/javascript/test/colorize-fixtures/test.js
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+
+var gulp = require('gulp');
+var tsb = require('gulp-tsb');
+var util = require('./lib/util');
+var watcher = require('./lib/watch');
+var assign = require('object-assign');
+
+var compilation = tsb.create(assign({ verbose: true }, require('./tsconfig.json').compilerOptions));
+
+gulp.task('compile', function() {
+ return gulp.src('**/*.ts', { base: '.' })
+ .pipe(compilation())
+ .pipe(gulp.dest(''));
+});
+
+gulp.task('watch', function() {
+ var src = gulp.src('**/*.ts', { base: '.' });
+
+ return watcher('**/*.ts', { base: '.' })
+ .pipe(util.incremental(compilation, src))
+ .pipe(gulp.dest(''));
+});
+
+gulp.task('default', ['compile']);
+
+function cloneArray(arr) {
+ _.foo();
+ var r = [];
+ for (var i = 0, len = arr.length; i < len; i++) {
+ r[i] = doClone(arr[i]);
+ }
+ return r;
+}
\ No newline at end of file
diff --git a/extensions/javascript/test/colorize-fixtures/test.jsx b/extensions/javascript/test/colorize-fixtures/test.jsx
new file mode 100644
index 00000000000..18e667eee21
--- /dev/null
+++ b/extensions/javascript/test/colorize-fixtures/test.jsx
@@ -0,0 +1,35 @@
+var ToggleText = React.createClass({
+ getInitialState: function () {
+ return {
+ showDefault: true
+ }
+ },
+
+ toggle: function (e) {
+ // Prevent following the link.
+ e.preventDefault();
+
+ // Invert the chosen default.
+ // This will trigger an intelligent re-render of the component.
+ this.setState({ showDefault: !this.state.showDefault })
+ },
+
+ render: function () {
+ // Default to the default message.
+ var message = this.props.default;
+
+ // If toggled, show the alternate message.
+ if (!this.state.showDefault) {
+ message = this.props.alt;
+ }
+
+ return (
+
+ );
+ }
+});
+
+React.render(, document.body);
\ No newline at end of file
diff --git a/extensions/javascript/test/colorize-results/test_js.json b/extensions/javascript/test/colorize-results/test_js.json
new file mode 100644
index 00000000000..8392124673b
--- /dev/null
+++ b/extensions/javascript/test/colorize-results/test_js.json
@@ -0,0 +1,2389 @@
+[
+ {
+ "c": "/*---------------------------------------------------------------------------------------------",
+ "t": "js.block.comment",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " * Copyright (c) Microsoft Corporation. All rights reserved.",
+ "t": "js.block.comment",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " * Licensed under the MIT License. See License.txt in the project root for license information.",
+ "t": "js.block.comment",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " *--------------------------------------------------------------------------------------------*/",
+ "t": "js.block.comment",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.storage.type.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "gulp",
+ "t": "meta.js.var.expr.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = require",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'gulp'",
+ "t": "meta.js.string.single.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.storage.type.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "tsb",
+ "t": "meta.js.var.expr.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = require",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'gulp-tsb'",
+ "t": "meta.js.string.single.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.storage.type.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "util",
+ "t": "meta.js.var.expr.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = require",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'./lib/util'",
+ "t": "meta.js.string.single.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.storage.type.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "watcher",
+ "t": "meta.js.var.expr.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = require",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'./lib/watch'",
+ "t": "meta.js.string.single.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.storage.type.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "assign",
+ "t": "meta.js.var.expr.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = require",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'object-assign'",
+ "t": "meta.js.string.single.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.storage.type.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "compilation",
+ "t": "meta.js.var.expr.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = tsb.create",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "assign",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.brace.js.block.curly.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "verbose: ",
+ "t": "meta.js.block.object.member.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "true",
+ "t": "meta.js.block.object.member.var.expr.var-single-variable.constant.language.boolean",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.object.member.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.brace.js.block.curly.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ", require",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'./tsconfig.json'",
+ "t": "meta.js.string.single.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ".compilerOptions",
+ "t": "meta.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "))",
+ "t": "meta.brace.paren.js.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "gulp.task",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'compile'",
+ "t": "js.string.single",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ", ",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "function",
+ "t": "meta.js.function.storage.type",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": "()",
+ "t": "meta.brace.js.function.type.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "meta.js.block.function.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " gulp.src",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'**/*.ts'",
+ "t": "meta.js.string.single.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ", ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "base: ",
+ "t": "meta.js.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'.'",
+ "t": "meta.js.string.single.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t.pipe",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "compilation",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "())",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t.pipe",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "gulp.dest",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "''",
+ "t": "meta.js.string.single.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": "))",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "gulp.task",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'watch'",
+ "t": "js.string.single",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ", ",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "function",
+ "t": "meta.js.function.storage.type",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": "()",
+ "t": "meta.brace.js.function.type.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t",
+ "t": "meta.js.block.function.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.block.function.storage.type.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "src",
+ "t": "meta.js.block.function.decl.var.expr.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = gulp.src",
+ "t": "meta.js.block.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'**/*.ts'",
+ "t": "meta.js.string.single.block.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ", ",
+ "t": "meta.js.block.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.brace.js.block.curly.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "base: ",
+ "t": "meta.js.block.object.member.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'.'",
+ "t": "meta.js.string.single.block.object.member.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.object.member.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.brace.js.block.curly.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.block.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "meta.js.block.function.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " watcher",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'**/*.ts'",
+ "t": "meta.js.string.single.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ", ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "base: ",
+ "t": "meta.js.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'.'",
+ "t": "meta.js.string.single.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t.pipe",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "util.incremental",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "compilation, src",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "))",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t.pipe",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "gulp.dest",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "''",
+ "t": "meta.js.string.single.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": "))",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "gulp.task",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'default'",
+ "t": "js.string.single",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ", ",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "[",
+ "t": "meta.brace.js.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'compile'",
+ "t": "meta.js.string.single.array.literal",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": "]",
+ "t": "meta.brace.js.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "function",
+ "t": "meta.js.function.storage.type",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cloneArray",
+ "t": "meta.js.function.entity.name",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.js.function.type.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "arr",
+ "t": "meta.js.function.type.parameter.variable.name",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.js.function.type.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " _.foo",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.block.function.storage.type.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "r",
+ "t": "meta.js.block.function.decl.var.expr.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = ",
+ "t": "meta.js.block.function.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "[]",
+ "t": "meta.brace.js.block.function.decl.var.expr.var-single-variable.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "for",
+ "t": "meta.js.block.function.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.js.block.function.storage.type.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " i ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "meta.js.block.function.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "meta.js.block.function.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ", len ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "meta.js.block.function.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " arr.length; i ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "meta.js.block.function.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " len; i",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "++",
+ "t": "meta.js.block.function.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " r",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "[",
+ "t": "meta.brace.js.block.function.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "i",
+ "t": "meta.js.block.function.decl.array.literal",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "]",
+ "t": "meta.brace.js.block.function.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "meta.js.block.function.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " doClone",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "arr",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "[",
+ "t": "meta.brace.js.block.function.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "i",
+ "t": "meta.js.block.function.decl.array.literal",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "]",
+ "t": "meta.brace.js.block.function.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.brace.paren.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "meta.js.block.function.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " r;",
+ "t": "meta.js.block.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.brace.js.block.curly.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ }
+]
\ No newline at end of file
diff --git a/extensions/javascript/test/colorize-results/test_jsx.json b/extensions/javascript/test/colorize-results/test_jsx.json
new file mode 100644
index 00000000000..2bdea6c9fbd
--- /dev/null
+++ b/extensions/javascript/test/colorize-results/test_jsx.json
@@ -0,0 +1,1806 @@
+[
+ {
+ "c": "var",
+ "t": "meta.var.expr.js.storage.type",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "ToggleText",
+ "t": "meta.var.expr.js.var-single-variable.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = React.createClass",
+ "t": "meta.var.expr.js.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "getInitialState: ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "function",
+ "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " showDefault: ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "true",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.boolean",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ",",
+ "t": "meta.var.expr.js.var-single-variable.block",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "toggle: ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "function",
+ "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "e",
+ "t": "meta.var.expr.js.type.var-single-variable.variable.block.object.member.function.parameter.name",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "// Prevent following the link.",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " e.preventDefault",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "// Invert the chosen default.",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "// This will trigger an intelligent re-render of the component.",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".setState",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " showDefault: ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "!",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "this",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".state.showDefault ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ",",
+ "t": "meta.var.expr.js.var-single-variable.block",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "render: ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "function",
+ "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "// Default to the default message.",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "message",
+ "t": "meta.var.expr.js.var-single-variable.variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".props.default;",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "// If toggled, show the alternate message.",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "if",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "!",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "this",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".state.showDefault",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " message ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".props.alt;",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "div",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag"
+ }
+ },
+ {
+ "c": ">",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "<",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "h1",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag"
+ }
+ },
+ {
+ "c": ">",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "Hello ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.start",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "message",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.end",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "!",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "h1",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag"
+ }
+ },
+ {
+ "c": ">",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "<",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "a",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.open.attribute-name",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "href",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.entity.open.attribute-name.other",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name"
+ }
+ },
+ {
+ "c": "=",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.tag.without-attributes.open.assignment",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin.open.string.quoted.double",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open.string.quoted.double",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.open.attribute-name",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "onClick",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.entity.open.attribute-name.other",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name"
+ }
+ },
+ {
+ "c": "=",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.tag.without-attributes.open.assignment",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "{",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.start.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "this",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.constant.language.this.tag.without-attributes.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": ".toggle",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": ">",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "Toggle",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "a",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag"
+ }
+ },
+ {
+ "c": ">",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.punctuation.definition.begin.close",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "div",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.entity.close",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag"
+ }
+ },
+ {
+ "c": ">",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.punctuation.definition.end.close",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "meta.var.expr.js.var-single-variable.brace.block.curly",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.var.expr.js.var-single-variable.brace.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "React.render",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "meta.js.brace.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "js.tag.punctuation.definition.begin.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "ToggleText",
+ "t": "js.name.tag.entity.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.tag.open.attribute-name",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "default",
+ "t": "meta.js.tag.entity.open.attribute-name.other",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name"
+ }
+ },
+ {
+ "c": "=",
+ "t": "js.keyword.operator.tag.open.assignment",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "js.tag.punctuation.definition.begin.open.string.quoted.double",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag"
+ }
+ },
+ {
+ "c": "World",
+ "t": "js.tag.open.string.quoted.double",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "js.tag.punctuation.definition.end.open.string.quoted.double",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "meta.js.tag.open.attribute-name",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag"
+ }
+ },
+ {
+ "c": "alt",
+ "t": "meta.js.tag.entity.open.attribute-name.other",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name"
+ }
+ },
+ {
+ "c": "=",
+ "t": "js.keyword.operator.tag.open.assignment",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "js.tag.punctuation.definition.begin.open.string.quoted.double",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag"
+ }
+ },
+ {
+ "c": "Mars",
+ "t": "js.tag.open.string.quoted.double",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "js.tag.punctuation.definition.end.open.string.quoted.double",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag"
+ }
+ },
+ {
+ "c": " ",
+ "t": "js.tag.open",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "/>",
+ "t": "js.tag.punctuation.definition.end.open",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ", document.body",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "meta.js.brace.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ }
+]
\ No newline at end of file
diff --git a/extensions/typescript/test/colorize-fixtures/test.ts b/extensions/typescript/test/colorize-fixtures/test.ts
new file mode 100644
index 00000000000..b9c80efd386
--- /dev/null
+++ b/extensions/typescript/test/colorize-fixtures/test.ts
@@ -0,0 +1,111 @@
+/* Game of Life
+ * Implemented in TypeScript
+ * To learn more about TypeScript, please visit http://www.typescriptlang.org/
+ */
+
+module Conway {
+
+ export class Cell {
+ public row: number;
+ public col: number;
+ public live: boolean;
+
+ constructor(row: number, col: number, live: boolean) {
+ this.row = row;
+ this.col = col;
+ this.live = live
+ }
+ }
+
+ export class GameOfLife {
+ private gridSize: number;
+ private canvasSize: number;
+ private lineColor: string;
+ private liveColor: string;
+ private deadColor: string;
+ private initialLifeProbability: number;
+ private animationRate: number;
+ private cellSize: number;
+ private world;
+
+
+ constructor() {
+ this.gridSize = 50;
+ this.canvasSize = 600;
+ this.lineColor = '#cdcdcd';
+ this.liveColor = '#666';
+ this.deadColor = '#eee';
+ this.initialLifeProbability = 0.5;
+ this.animationRate = 60;
+ this.cellSize = 0;
+ this.world = this.createWorld();
+ this.circleOfLife();
+ }
+
+ public createWorld() {
+ return this.travelWorld( (cell : Cell) => {
+ cell.live = Math.random() < this.initialLifeProbability;
+ return cell;
+ });
+ }
+
+ public circleOfLife() : void {
+ this.world = this.travelWorld( (cell: Cell) => {
+ cell = this.world[cell.row][cell.col];
+ this.draw(cell);
+ return this.resolveNextGeneration(cell);
+ });
+ setTimeout( () => {this.circleOfLife()}, this.animationRate);
+ }
+
+ public resolveNextGeneration(cell : Cell) {
+ var count = this.countNeighbors(cell);
+ var newCell = new Cell(cell.row, cell.col, cell.live);
+ if(count < 2 || count > 3) newCell.live = false;
+ else if(count == 3) newCell.live = true;
+ return newCell;
+ }
+
+ public countNeighbors(cell : Cell) {
+ var neighbors = 0;
+ for(var row = -1; row <=1; row++) {
+ for(var col = -1; col <= 1; col++) {
+ if(row == 0 && col == 0) continue;
+ if(this.isAlive(cell.row + row, cell.col + col)) {
+ neighbors++;
+ }
+ }
+ }
+ return neighbors;
+ }
+
+ public isAlive(row : number, col : number) {
+ if(row < 0 || col < 0 || row >= this.gridSize || col >= this.gridSize) return false;
+ return this.world[row][col].live;
+ }
+
+ public travelWorld(callback) {
+ var result = [];
+ for(var row = 0; row < this.gridSize; row++) {
+ var rowData = [];
+ for(var col = 0; col < this.gridSize; col++) {
+ rowData.push(callback(new Cell(row, col, false)));
+ }
+ result.push(rowData);
+ }
+ return result;
+ }
+
+ public draw(cell : Cell) {
+ if(this.cellSize == 0) this.cellSize = this.canvasSize/this.gridSize;
+
+ this.context.strokeStyle = this.lineColor;
+ this.context.strokeRect(cell.row * this.cellSize, cell.col*this.cellSize, this.cellSize, this.cellSize);
+ this.context.fillStyle = cell.live ? this.liveColor : this.deadColor;
+ this.context.fillRect(cell.row * this.cellSize, cell.col*this.cellSize, this.cellSize, this.cellSize);
+ }
+
+ }
+}
+
+var game = new Conway.GameOfLife();
diff --git a/extensions/typescript/test/colorize-results/test_ts.json b/extensions/typescript/test/colorize-results/test_ts.json
new file mode 100644
index 00000000000..c403a1df8bd
--- /dev/null
+++ b/extensions/typescript/test/colorize-results/test_ts.json
@@ -0,0 +1,8241 @@
+[
+ {
+ "c": "/* Game of Life",
+ "t": "comment.block.ts",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " * Implemented in TypeScript",
+ "t": "comment.block.ts",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " * To learn more about TypeScript, please visit http://www.typescriptlang.org/",
+ "t": "comment.block.ts",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": " */",
+ "t": "comment.block.ts",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment"
+ }
+ },
+ {
+ "c": "module",
+ "t": "ts.storage.type",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " Conway ",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t",
+ "t": "block.ts.meta",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "export",
+ "t": "block.ts.storage.type.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "class",
+ "t": "block.ts.storage.type.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "Cell",
+ "t": "block.ts.meta.declaration.object.name.entity.class",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.class",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.class",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "row",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "col",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "live",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "boolean",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "constructor",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "row",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ",",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "col",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ",",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "live",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "boolean",
+ "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " row;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " col;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".live ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " live",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t",
+ "t": "block.ts.meta",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "export",
+ "t": "block.ts.storage.type.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "class",
+ "t": "block.ts.storage.type.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "GameOfLife",
+ "t": "block.ts.meta.declaration.object.name.entity.class",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.class",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.class",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "gridSize",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "canvasSize",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "lineColor",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "string",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "liveColor",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "string",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "deadColor",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "string",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "initialLifeProbability",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "animationRate",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cellSize",
+ "t": "block.ts.meta.declaration.object.body.field.variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.meta.declaration.object.body.field",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.field.primitive.support",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "private",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " world;",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "constructor",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": "()",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".gridSize ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "50",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".canvasSize ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "600",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".lineColor ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'#cdcdcd'",
+ "t": "block.ts.meta.declaration.object.body.method.decl.string.single",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".liveColor ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'#666'",
+ "t": "block.ts.meta.declaration.object.body.method.decl.string.single",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".deadColor ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "'#eee'",
+ "t": "block.ts.meta.declaration.object.body.method.decl.string.single",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".initialLifeProbability ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0.5",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".animationRate ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "60",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".world ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".createWorld",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".circleOfLife",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "createWorld",
+ "t": "block.ts.meta.declaration.object.name.entity.body.method.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".travelWorld",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell : Cell",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=>",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\tcell.live ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " Math.random",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".initialLifeProbability;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " cell;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "circleOfLife",
+ "t": "block.ts.meta.declaration.object.name.entity.body.method.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "void",
+ "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.body.method.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".world ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".travelWorld",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell: Cell",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=>",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\tcell ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".world",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "[",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell.row",
+ "t": "block.ts.meta.declaration.object.body.method.decl.array.literal",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "][",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell.col",
+ "t": "block.ts.meta.declaration.object.body.method.decl.array.literal",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "]",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".draw",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".resolveNextGeneration",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\tsetTimeout",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=>",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".circleOfLife",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ", ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".animationRate",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "resolveNextGeneration",
+ "t": "block.ts.meta.declaration.object.name.entity.body.method.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "Cell",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "count",
+ "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".countNeighbors",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "newCell",
+ "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "new",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.var.expr.var-single-variable.new.others",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable.new",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "Cell",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.decl.var.expr.var-single-variable.new",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell.row, cell.col, cell.live",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "if",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "count ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "2",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "||",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " count ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ">",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "3",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " newCell.live ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "false",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "else",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "if",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "count ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "==",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "3",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " newCell.live ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "true",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " newCell;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "countNeighbors",
+ "t": "block.ts.meta.declaration.object.name.entity.body.method.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "Cell",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "neighbors",
+ "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "for",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "-",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "1",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": "; row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "1",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": "; row",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "++",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "for",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "-",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "1",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": "; col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "1",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": "; col",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "++",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "if",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "==",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "&&",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "==",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "continue",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "if",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".isAlive",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell.row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "+",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " row, cell.col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "+",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " col",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "))",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t\t\tneighbors",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "++",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " neighbors;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "isAlive",
+ "t": "block.ts.meta.declaration.object.name.entity.body.method.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "row",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ",",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "col",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "number",
+ "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "if",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "||",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "||",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ">=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".gridSize ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "||",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ">=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".gridSize",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "false",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".world",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "[",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "row",
+ "t": "block.ts.meta.declaration.object.body.method.decl.array.literal",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "][",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "col",
+ "t": "block.ts.meta.declaration.object.body.method.decl.array.literal",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "]",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ".live;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "travelWorld",
+ "t": "block.ts.meta.declaration.object.name.entity.body.method.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "callback",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "result",
+ "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "[]",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "for",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": "; row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".gridSize; row",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "++",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "rowData",
+ "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "[]",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "for",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "block.ts.storage.type.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": "; col ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "<",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".gridSize; col",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "++",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t\trowData.push",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "callback",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "new",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.expr.new.others",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl.expr.new",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "Cell",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.decl.expr.new",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "row, col, ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "false",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ")))",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t\tresult.push",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "rowData",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "return",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": " result;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "public",
+ "t": "block.ts.storage.meta.declaration.object.body.modifier.method",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "draw",
+ "t": "block.ts.meta.declaration.object.name.entity.body.method.function",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell",
+ "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ": ",
+ "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "Cell",
+ "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "{",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "if",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "==",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "0",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".canvasSize",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "/",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".gridSize;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".context.strokeStyle ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".lineColor;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".context.strokeRect",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell.row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "*",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize, cell.col",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "*",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize, ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize, ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".context.fillStyle ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "=",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " cell.live ? ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".liveColor : ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".deadColor;",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".context.fillRect",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "(",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "cell.row ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "*",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": " ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize, cell.col",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "*",
+ "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize, ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize, ",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "this",
+ "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language"
+ }
+ },
+ {
+ "c": ".cellSize",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ")",
+ "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t\t",
+ "t": "block.ts.meta.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "\t",
+ "t": "block.ts.meta.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly.declaration.object.body",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "}",
+ "t": "block.ts.meta.brace.curly",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "var",
+ "t": "ts.storage.type.meta.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type"
+ }
+ },
+ {
+ "c": " ",
+ "t": "ts.meta.var.expr",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "game",
+ "t": "ts.meta.variable.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": " = ",
+ "t": "ts.meta.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "new",
+ "t": "ts.meta.keyword.var.expr.var-single-variable.new.others",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword",
+ "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword",
+ "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword",
+ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword"
+ }
+ },
+ {
+ "c": " ",
+ "t": "ts.meta.var.expr.var-single-variable.new",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "Conway.GameOfLife",
+ "t": "ts.type.meta.name.var.expr.var-single-variable.new",
+ "r": {
+ "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name",
+ "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": "()",
+ "t": "ts.meta.brace.paren.var.expr.var-single-variable",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ },
+ {
+ "c": ";",
+ "t": "",
+ "r": {
+ "dark_plus": ".vs-dark .token",
+ "light_plus": ".vs .token",
+ "dark_vs": ".vs-dark .token",
+ "light_vs": ".vs .token",
+ "hc_black": ".hc-black .token"
+ }
+ }
+]
\ No newline at end of file