fix(editor): Fix highlighting in SQL editor (#19291)

This commit is contained in:
yehorkardash
2025-09-11 11:46:41 +00:00
committed by GitHub
parent 45e8209142
commit 03b865d4db
23 changed files with 1581 additions and 23 deletions

View File

@@ -3,6 +3,8 @@ import { styleTags, tags as t } from '@lezer/highlight';
import { parser } from './grammar';
export const expressionParser = parser;
export const parserWithMetaData = parser.configure({
props: [
foldNodeProp.add({

View File

@@ -1 +1 @@
export { parserWithMetaData, n8nLanguage } from './expressions';
export { parserWithMetaData, n8nLanguage, expressionParser } from './expressions';