mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 18:28:58 +00:00
62 lines
2.1 KiB
JavaScript
62 lines
2.1 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
// @ts-check
|
|
|
|
import * as vscodeGrammarUpdater from 'vscode-grammar-updater';
|
|
|
|
function patchGrammar(grammar) {
|
|
let patchCount = 0;
|
|
|
|
let visit = function (rule, parent) {
|
|
if (rule.name === 'source.js' || rule.name === 'source.css') {
|
|
if (parent.node[0].name !== 'punctuation.definition.string.end.html' && parent.parent && parent.parent.property === 'endCaptures') {
|
|
rule.name = rule.name + '-ignored-vscode';
|
|
patchCount++;
|
|
}
|
|
}
|
|
for (let property in rule) {
|
|
let value = rule[property];
|
|
if (typeof value === 'object') {
|
|
visit(value, { node: rule, property: property, parent: parent });
|
|
}
|
|
}
|
|
};
|
|
|
|
let repository = grammar.repository;
|
|
for (let key in repository) {
|
|
visit(repository[key], { node: repository, property: key, parent: undefined });
|
|
}
|
|
if (patchCount !== 2) {
|
|
console.warn(`Expected to patch 2 occurrences of source.js & source.css: Was ${patchCount}`);
|
|
}
|
|
|
|
return grammar;
|
|
}
|
|
|
|
function patchGrammarDerivative(grammar) {
|
|
let patchCount = 0;
|
|
|
|
let patterns = grammar.patterns;
|
|
for (let key in patterns) {
|
|
if (patterns[key]?.name === 'meta.tag.other.unrecognized.html.derivative' && patterns[key]?.begin === '(</?)(\\w[^\\s>]*)(?<!/)') {
|
|
patterns[key].begin = '(</?)(\\w[^\\s<>]*)(?<!/)';
|
|
patchCount++;
|
|
}
|
|
}
|
|
if (patchCount !== 1) {
|
|
console.warn(`Expected to do 1 patch: Was ${patchCount}`);
|
|
}
|
|
|
|
return grammar;
|
|
}
|
|
|
|
const tsGrammarRepo = 'textmate/html.tmbundle';
|
|
const grammarPath = 'Syntaxes/HTML.plist';
|
|
vscodeGrammarUpdater.update(tsGrammarRepo, grammarPath, './syntaxes/html.tmLanguage.json', grammar => patchGrammar(grammar));
|
|
|
|
const grammarDerivativePath = 'Syntaxes/HTML%20%28Derivative%29.tmLanguage';
|
|
vscodeGrammarUpdater.update(tsGrammarRepo, grammarDerivativePath, './syntaxes/html-derivative.tmLanguage.json', grammar => patchGrammarDerivative(grammar));
|
|
|