@neo4j-cypher/language-support
Advanced tools
Comparing version 2.0.0-canary-f78dbe6 to 2.0.0-canary-fb63982
@@ -14,2 +14,3 @@ export type { ParserRuleContext } from 'antlr4'; | ||
export { testData } from './tests/testData'; | ||
export { textMateGrammar } from './textMateGrammar'; | ||
export type { CompletionItem, Neo4jFunction, Neo4jProcedure } from './types'; | ||
@@ -16,0 +17,0 @@ export { CypherLexer, CypherParser }; |
@@ -40,1 +40,2 @@ export declare enum CypherTokenType { | ||
export declare const keywordNames: Set<string>; | ||
export declare const operatorSymbols: Set<string>; |
@@ -21,3 +21,3 @@ { | ||
], | ||
"version": "2.0.0-canary-f78dbe6", | ||
"version": "2.0.0-canary-fb63982", | ||
"main": "./dist/cjs/index.cjs", | ||
@@ -24,0 +24,0 @@ "module": "./dist/esm/index.mjs", |
@@ -22,2 +22,3 @@ export type { ParserRuleContext } from 'antlr4'; | ||
export { testData } from './tests/testData'; | ||
export { textMateGrammar } from './textMateGrammar'; | ||
export type { CompletionItem, Neo4jFunction, Neo4jProcedure } from './types'; | ||
@@ -24,0 +25,0 @@ export { CypherLexer, CypherParser }; |
@@ -409,1 +409,4 @@ import CypherLexer from './generated-parser/CypherCmdLexer'; | ||
export const keywordNames = new Set(lexerKeywords.map((i) => tokenNames[i])); | ||
export const operatorSymbols = new Set( | ||
lexerOperators.map((i) => literalNames[i].replaceAll("'", '')), | ||
); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
141751145
126
150306