lang-feel 2.4.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/feel.d.ts CHANGED
@@ -6,6 +6,12 @@ import { CompletionSource } from '@codemirror/autocomplete';
6
6
  * extended with highlighting and indentation information.
7
7
  */
8
8
  export declare const feelLanguage: LRLanguage;
9
+ export type FeelConfig = {
10
+ dialect?: 'expression' | 'unaryTests';
11
+ parserDialect?: string;
12
+ completions?: CompletionSource[];
13
+ context?: Record<string, unknown>;
14
+ };
9
15
  /**
10
16
  * A language provider for FEEL Unary Tests
11
17
  */
@@ -19,9 +25,4 @@ export declare const expressionLanguage: LRLanguage;
19
25
  *
20
26
  * Includes [snippet](#lang-feel.snippets)
21
27
  */
22
- export declare function feel(config?: {
23
- dialect?: 'expression' | 'unaryTests';
24
- parserDialect?: string;
25
- completions?: CompletionSource[];
26
- context?: Record<string, any>;
27
- }): LanguageSupport;
28
+ export declare function feel(config?: FeelConfig): LanguageSupport;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { feel, feelLanguage, expressionLanguage, unaryTestsLanguage } from './feel';
2
- export { snippets } from './snippets';
3
- export * from './completion';
1
+ export { feel, feelLanguage, expressionLanguage, unaryTestsLanguage, FeelConfig } from './feel.js';
2
+ export { snippets } from './snippets.js';
3
+ export * from './completion.js';
package/dist/index.js CHANGED
@@ -44,18 +44,13 @@ const snippets = [snippetCompletion$1('function(${params}) ${body}', {
44
44
  })];
45
45
 
46
46
  function _extends() {
47
- _extends = Object.assign ? Object.assign.bind() : function (target) {
48
- for (var i = 1; i < arguments.length; i++) {
49
- var source = arguments[i];
50
- for (var key in source) {
51
- if (Object.prototype.hasOwnProperty.call(source, key)) {
52
- target[key] = source[key];
53
- }
54
- }
47
+ return _extends = Object.assign ? Object.assign.bind() : function (n) {
48
+ for (var e = 1; e < arguments.length; e++) {
49
+ var t = arguments[e];
50
+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
55
51
  }
56
- return target;
57
- };
58
- return _extends.apply(this, arguments);
52
+ return n;
53
+ }, _extends.apply(null, arguments);
59
54
  }
60
55
 
61
56
  function contextualKeyword(options) {
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/snippets.ts","../src/completion.ts","../src/feel.ts"],"sourcesContent":["import { Completion, snippetCompletion } from '@codemirror/autocomplete';\n\n/**\n * A collection of FEEL-related [snippets](#autocomplete.snippet).\n */\nexport const snippets: readonly Completion[] = [\n snippetCompletion('function(${params}) ${body}', {\n label: 'function',\n detail: 'definition',\n type: 'keyword'\n }),\n snippetCompletion('for ${var} in ${collection} return ${value}', {\n label: 'for',\n detail: 'expression',\n type: 'keyword'\n }),\n snippetCompletion('every ${var} in ${collection} satisfies ${condition}', {\n label: 'every',\n detail: 'quantified expression',\n type: 'keyword'\n }),\n snippetCompletion('some ${var} in ${collection} satisfies ${condition}', {\n label: 'some',\n detail: 'quantified expression',\n type: 'keyword'\n }),\n snippetCompletion('if ${condition} then ${value} else ${other value}', {\n label: 'if',\n detail: 'block',\n type: 'keyword'\n }),\n snippetCompletion('{ ${key}: ${value} }', {\n label: 'context',\n detail: 'block',\n type: 'keyword'\n }),\n snippetCompletion('null', {\n label: 'null',\n detail: 'literal',\n type: 'keyword'\n }),\n snippetCompletion('true', {\n label: 'true',\n detail: 'literal',\n type: 'keyword'\n }),\n snippetCompletion('false', {\n label: 'false',\n detail: 'literal',\n type: 'keyword'\n })\n];\n","import { syntaxTree } from '@codemirror/language';\nimport { SyntaxNode } from '@lezer/common';\n\nimport {\n CompletionSource,\n Completion,\n completeFromList,\n CompletionContext\n} from '@codemirror/autocomplete';\n\n\nexport function contextualKeyword(options: {\n before?: string,\n after?: string,\n context: string,\n keyword: string\n}) : CompletionSource {\n\n const {\n context: nodes,\n after,\n before,\n keyword\n } = options;\n\n return ifInside({ nodes, before, after, keyword }, completeFromList([\n { label: keyword, type: 'keyword', boost: 10 }\n ]));\n}\n\nexport const keywordCompletions = [\n contextualKeyword({\n context: 'InExpression',\n keyword: 'in'\n }),\n contextualKeyword({\n context: 'IfExpression',\n keyword: 'then',\n after: 'if',\n before: 'else'\n }),\n contextualKeyword({\n context: 'IfExpression',\n keyword: 'else',\n after: 'then'\n }),\n contextualKeyword({\n context: 'QuantifiedExpression',\n keyword: 'satisfies'\n }),\n contextualKeyword({\n context: 'ForExpression',\n after: 'InExpressions',\n keyword: 'return'\n })\n];\n\nexport const dontComplete = [\n 'StringLiteral', 'Identifier',\n 'LineComment', 'BlockComment',\n 'PathExpression', 'Context',\n 'Key', 'ParameterName'\n];\n\nexport const doComplete = [\n 'Expr',\n 'ContextEntry'\n];\n\nexport function ifExpression(completionSource: CompletionSource) : CompletionSource {\n\n const allNodes = [ ...dontComplete, ...doComplete ];\n\n return (context: CompletionContext) => {\n\n const { state, pos } = context;\n\n const match = matchUp(syntaxTree(state).resolveInner(pos, -1), allNodes);\n\n if (match) {\n\n const [ _, name ] = match;\n\n if (dontComplete.includes(name)) {\n return null;\n }\n }\n\n return completionSource(context);\n };\n}\n\nexport function snippetCompletion(snippets: readonly Completion[]) : CompletionSource {\n return ifExpression(\n completeFromList(snippets.map(s => ({ ...s, type: 'text' })))\n );\n}\n\nexport function matchLeft(node: SyntaxNode, position: number, nodes: (string|undefined)[]) : SyntaxNode | null {\n return matchChildren(node, position, nodes, -1);\n}\n\nexport function matchRight(node: SyntaxNode, position: number, nodes: (string|undefined)[]) : SyntaxNode | null {\n return matchChildren(node, position, nodes, 1);\n}\n\nexport function matchChildren(node: SyntaxNode, position: number, nodes: (string|undefined)[], direction: 1 | -1) : SyntaxNode | null {\n\n let child = node[direction > 0 ? 'childAfter' : 'childBefore'](position);\n\n while (child) {\n if (nodes.includes(child.name)) {\n return child;\n }\n\n if (child.type.isError && child.firstChild) {\n if (nodes.includes(child.firstChild.name)) {\n return child.firstChild;\n }\n }\n\n child = child[direction > 0 ? 'nextSibling' : 'prevSibling'];\n }\n\n return null;\n}\n\nfunction matchUp(node: SyntaxNode, nodeNames: string | string[]) : [ SyntaxNode, string ] | null {\n\n if (!Array.isArray(nodeNames)) {\n nodeNames = [ nodeNames ];\n }\n\n for (; node; node = node.parent!) {\n\n const nodeType = node.type;\n\n const matchedName = nodeNames.find(name => name && nodeType.is(name));\n\n if (matchedName) {\n return [ node, matchedName ];\n }\n\n if (nodeType.isTop) {\n break;\n }\n }\n\n return null;\n}\n\nexport function ifInside(options: {\n nodes: string | string[],\n keyword: string,\n before?: string,\n after?: string\n}, source: CompletionSource): CompletionSource {\n\n const {\n nodes,\n before,\n after,\n keyword\n } = options;\n\n return (context) => {\n\n const { state, pos } = context;\n\n const match = matchUp(syntaxTree(state).resolveInner(pos, -1), nodes);\n\n if (!match) {\n return null;\n }\n\n const [ node ] = match;\n\n if (matchLeft(node, pos, [ keyword, before ])) {\n return null;\n }\n\n if (matchRight(node, pos, [ keyword, after ])) {\n return null;\n }\n\n if (after && !matchLeft(node, pos, [ after ])) {\n return null;\n }\n\n return source(context);\n };\n}","import {\n parser,\n trackVariables\n} from 'lezer-feel';\n\nimport {\n LRLanguage,\n LanguageSupport,\n delimitedIndent,\n continuedIndent,\n indentNodeProp,\n foldNodeProp,\n foldInside\n} from '@codemirror/language';\n\nimport {\n snippets\n} from './snippets';\n\nimport {\n keywordCompletions,\n snippetCompletion\n} from './completion';\n\nimport {\n CompletionSource\n} from '@codemirror/autocomplete';\n\n\n/**\n * A FEEL language provider based on the\n * [Lezer FEEL parser](https://github.com/nikku/lezer-feel),\n * extended with highlighting and indentation information.\n */\nexport const feelLanguage = LRLanguage.define({\n parser: parser.configure({\n props: [\n indentNodeProp.add({\n 'Context': delimitedIndent({\n closing: '}'\n }),\n 'List FilterExpression': delimitedIndent({\n closing: ']'\n }),\n 'ParenthesizedExpression FunctionInvocation': continuedIndent({\n except: /^\\s*\\)/\n }),\n 'ForExpression QuantifiedExpression IfExpression': continuedIndent({\n except: /^\\s*(then|else|return|satisfies)\\b/\n }),\n 'FunctionDefinition': continuedIndent({\n except: /^\\s*(\\(|\\))/\n })\n }),\n foldNodeProp.add({\n Context: foldInside,\n List: foldInside,\n ParenthesizedExpression: foldInside,\n FunctionDefinition(node) {\n const last = node.getChild(')');\n\n if (!last) return null;\n\n return {\n from: last.to,\n to: node.to\n };\n }\n })\n ]\n }),\n languageData: {\n indentOnInput: /^\\s*(\\)|\\}|\\]|then|else|return|satisfies)$/,\n commentTokens: {\n line: '//',\n block: {\n open: '/*',\n close: '*/'\n }\n }\n }\n});\n\n/**\n * A language provider for FEEL Unary Tests\n */\nexport const unaryTestsLanguage = feelLanguage.configure({\n top: 'UnaryTests',\n}, 'FEEL unary tests');\n\n/**\n * Language provider for FEEL Expression\n */\nexport const expressionLanguage = feelLanguage.configure({\n top: 'Expression'\n}, 'FEEL expression');\n\n\n\n/**\n * Feel language support for CodeMirror.\n *\n * Includes [snippet](#lang-feel.snippets)\n */\nexport function feel(config: {\n dialect?: 'expression' | 'unaryTests',\n parserDialect?: string,\n completions?: CompletionSource[],\n context?: Record<string, any>\n} = {}) {\n const language = config.dialect === 'unaryTests' ? unaryTestsLanguage : expressionLanguage;\n\n const dialect = config.parserDialect;\n const contextTracker = trackVariables(config.context);\n\n const contextualLang = language.configure({\n contextTracker,\n dialect\n });\n\n const completions = config.completions || [\n snippetCompletion(snippets),\n keywordCompletions,\n ].flat();\n\n return new LanguageSupport(contextualLang, [\n ...(\n completions.map(autocomplete => contextualLang.data.of({\n autocomplete\n }))\n )\n ]);\n\n}"],"names":["snippets","snippetCompletion","label","detail","type","contextualKeyword","options","context","nodes","after","before","keyword","ifInside","completeFromList","boost","keywordCompletions","dontComplete","doComplete","ifExpression","completionSource","allNodes","state","pos","match","matchUp","syntaxTree","resolveInner","_","name","includes","map","s","_extends","matchLeft","node","position","matchChildren","matchRight","direction","child","isError","firstChild","nodeNames","Array","isArray","parent","nodeType","matchedName","find","is","isTop","source","feelLanguage","LRLanguage","define","parser","configure","props","indentNodeProp","add","delimitedIndent","closing","continuedIndent","except","foldNodeProp","Context","foldInside","List","ParenthesizedExpression","FunctionDefinition","last","getChild","from","to","languageData","indentOnInput","commentTokens","line","block","open","close","unaryTestsLanguage","top","expressionLanguage","feel","config","language","dialect","parserDialect","contextTracker","trackVariables","contextualLang","completions","flat","LanguageSupport","autocomplete","data","of"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/snippets.ts","../src/completion.ts","../src/feel.ts"],"sourcesContent":["import { Completion, snippetCompletion } from '@codemirror/autocomplete';\n\n/**\n * A collection of FEEL-related [snippets](#autocomplete.snippet).\n */\nexport const snippets: readonly Completion[] = [\n snippetCompletion('function(${params}) ${body}', {\n label: 'function',\n detail: 'definition',\n type: 'keyword'\n }),\n snippetCompletion('for ${var} in ${collection} return ${value}', {\n label: 'for',\n detail: 'expression',\n type: 'keyword'\n }),\n snippetCompletion('every ${var} in ${collection} satisfies ${condition}', {\n label: 'every',\n detail: 'quantified expression',\n type: 'keyword'\n }),\n snippetCompletion('some ${var} in ${collection} satisfies ${condition}', {\n label: 'some',\n detail: 'quantified expression',\n type: 'keyword'\n }),\n snippetCompletion('if ${condition} then ${value} else ${other value}', {\n label: 'if',\n detail: 'block',\n type: 'keyword'\n }),\n snippetCompletion('{ ${key}: ${value} }', {\n label: 'context',\n detail: 'block',\n type: 'keyword'\n }),\n snippetCompletion('null', {\n label: 'null',\n detail: 'literal',\n type: 'keyword'\n }),\n snippetCompletion('true', {\n label: 'true',\n detail: 'literal',\n type: 'keyword'\n }),\n snippetCompletion('false', {\n label: 'false',\n detail: 'literal',\n type: 'keyword'\n })\n];\n","import { syntaxTree } from '@codemirror/language';\nimport { SyntaxNode } from '@lezer/common';\n\nimport {\n CompletionSource,\n Completion,\n completeFromList,\n CompletionContext\n} from '@codemirror/autocomplete';\n\n\nexport function contextualKeyword(options: {\n before?: string,\n after?: string,\n context: string,\n keyword: string\n}) : CompletionSource {\n\n const {\n context: nodes,\n after,\n before,\n keyword\n } = options;\n\n return ifInside({ nodes, before, after, keyword }, completeFromList([\n { label: keyword, type: 'keyword', boost: 10 }\n ]));\n}\n\nexport const keywordCompletions = [\n contextualKeyword({\n context: 'InExpression',\n keyword: 'in'\n }),\n contextualKeyword({\n context: 'IfExpression',\n keyword: 'then',\n after: 'if',\n before: 'else'\n }),\n contextualKeyword({\n context: 'IfExpression',\n keyword: 'else',\n after: 'then'\n }),\n contextualKeyword({\n context: 'QuantifiedExpression',\n keyword: 'satisfies'\n }),\n contextualKeyword({\n context: 'ForExpression',\n after: 'InExpressions',\n keyword: 'return'\n })\n];\n\nexport const dontComplete = [\n 'StringLiteral', 'Identifier',\n 'LineComment', 'BlockComment',\n 'PathExpression', 'Context',\n 'Key', 'ParameterName'\n];\n\nexport const doComplete = [\n 'Expr',\n 'ContextEntry'\n];\n\nexport function ifExpression(completionSource: CompletionSource) : CompletionSource {\n\n const allNodes = [ ...dontComplete, ...doComplete ];\n\n return (context: CompletionContext) => {\n\n const { state, pos } = context;\n\n const match = matchUp(syntaxTree(state).resolveInner(pos, -1), allNodes);\n\n if (match) {\n\n const [ _, name ] = match;\n\n if (dontComplete.includes(name)) {\n return null;\n }\n }\n\n return completionSource(context);\n };\n}\n\nexport function snippetCompletion(snippets: readonly Completion[]) : CompletionSource {\n return ifExpression(\n completeFromList(snippets.map(s => ({ ...s, type: 'text' })))\n );\n}\n\nexport function matchLeft(node: SyntaxNode, position: number, nodes: (string|undefined)[]) : SyntaxNode | null {\n return matchChildren(node, position, nodes, -1);\n}\n\nexport function matchRight(node: SyntaxNode, position: number, nodes: (string|undefined)[]) : SyntaxNode | null {\n return matchChildren(node, position, nodes, 1);\n}\n\nexport function matchChildren(node: SyntaxNode, position: number, nodes: (string|undefined)[], direction: 1 | -1) : SyntaxNode | null {\n\n let child = node[direction > 0 ? 'childAfter' : 'childBefore'](position);\n\n while (child) {\n if (nodes.includes(child.name)) {\n return child;\n }\n\n if (child.type.isError && child.firstChild) {\n if (nodes.includes(child.firstChild.name)) {\n return child.firstChild;\n }\n }\n\n child = child[direction > 0 ? 'nextSibling' : 'prevSibling'];\n }\n\n return null;\n}\n\nfunction matchUp(node: SyntaxNode, nodeNames: string | string[]) : [ SyntaxNode, string ] | null {\n\n if (!Array.isArray(nodeNames)) {\n nodeNames = [ nodeNames ];\n }\n\n for (; node; node = node.parent!) {\n\n const nodeType = node.type;\n\n const matchedName = nodeNames.find(name => name && nodeType.is(name));\n\n if (matchedName) {\n return [ node, matchedName ];\n }\n\n if (nodeType.isTop) {\n break;\n }\n }\n\n return null;\n}\n\nexport function ifInside(options: {\n nodes: string | string[],\n keyword: string,\n before?: string,\n after?: string\n}, source: CompletionSource): CompletionSource {\n\n const {\n nodes,\n before,\n after,\n keyword\n } = options;\n\n return (context) => {\n\n const { state, pos } = context;\n\n const match = matchUp(syntaxTree(state).resolveInner(pos, -1), nodes);\n\n if (!match) {\n return null;\n }\n\n const [ node ] = match;\n\n if (matchLeft(node, pos, [ keyword, before ])) {\n return null;\n }\n\n if (matchRight(node, pos, [ keyword, after ])) {\n return null;\n }\n\n if (after && !matchLeft(node, pos, [ after ])) {\n return null;\n }\n\n return source(context);\n };\n}","import {\n parser,\n trackVariables\n} from 'lezer-feel';\n\nimport {\n LRLanguage,\n LanguageSupport,\n delimitedIndent,\n continuedIndent,\n indentNodeProp,\n foldNodeProp,\n foldInside\n} from '@codemirror/language';\n\nimport {\n snippets\n} from './snippets.js';\n\nimport {\n keywordCompletions,\n snippetCompletion\n} from './completion.js';\n\nimport {\n CompletionSource\n} from '@codemirror/autocomplete';\n\n\n/**\n * A FEEL language provider based on the\n * [Lezer FEEL parser](https://github.com/nikku/lezer-feel),\n * extended with highlighting and indentation information.\n */\nexport const feelLanguage = LRLanguage.define({\n parser: parser.configure({\n props: [\n indentNodeProp.add({\n 'Context': delimitedIndent({\n closing: '}'\n }),\n 'List FilterExpression': delimitedIndent({\n closing: ']'\n }),\n 'ParenthesizedExpression FunctionInvocation': continuedIndent({\n except: /^\\s*\\)/\n }),\n 'ForExpression QuantifiedExpression IfExpression': continuedIndent({\n except: /^\\s*(then|else|return|satisfies)\\b/\n }),\n 'FunctionDefinition': continuedIndent({\n except: /^\\s*(\\(|\\))/\n })\n }),\n foldNodeProp.add({\n Context: foldInside,\n List: foldInside,\n ParenthesizedExpression: foldInside,\n FunctionDefinition(node) {\n const last = node.getChild(')');\n\n if (!last) return null;\n\n return {\n from: last.to,\n to: node.to\n };\n }\n })\n ]\n }),\n languageData: {\n indentOnInput: /^\\s*(\\)|\\}|\\]|then|else|return|satisfies)$/,\n commentTokens: {\n line: '//',\n block: {\n open: '/*',\n close: '*/'\n }\n }\n }\n});\n\nexport type FeelConfig = {\n dialect?: 'expression' | 'unaryTests',\n parserDialect?: string,\n completions?: CompletionSource[],\n context?: Record<string, unknown>\n};\n\n/**\n * A language provider for FEEL Unary Tests\n */\nexport const unaryTestsLanguage = feelLanguage.configure({\n top: 'UnaryTests',\n}, 'FEEL unary tests');\n\n/**\n * Language provider for FEEL Expression\n */\nexport const expressionLanguage = feelLanguage.configure({\n top: 'Expression'\n}, 'FEEL expression');\n\n\n\n/**\n * Feel language support for CodeMirror.\n *\n * Includes [snippet](#lang-feel.snippets)\n */\nexport function feel(config: FeelConfig = {}) {\n const language = config.dialect === 'unaryTests' ? unaryTestsLanguage : expressionLanguage;\n\n const dialect = config.parserDialect;\n const contextTracker = trackVariables(config.context);\n\n const contextualLang = language.configure({\n contextTracker,\n dialect\n });\n\n const completions = config.completions || [\n snippetCompletion(snippets),\n keywordCompletions,\n ].flat();\n\n return new LanguageSupport(contextualLang, [\n ...(\n completions.map(autocomplete => contextualLang.data.of({\n autocomplete\n }))\n )\n ]);\n\n}"],"names":["snippets","snippetCompletion","label","detail","type","contextualKeyword","options","context","nodes","after","before","keyword","ifInside","completeFromList","boost","keywordCompletions","dontComplete","doComplete","ifExpression","completionSource","allNodes","state","pos","match","matchUp","syntaxTree","resolveInner","_","name","includes","map","s","_extends","matchLeft","node","position","matchChildren","matchRight","direction","child","isError","firstChild","nodeNames","Array","isArray","parent","nodeType","matchedName","find","is","isTop","source","feelLanguage","LRLanguage","define","parser","configure","props","indentNodeProp","add","delimitedIndent","closing","continuedIndent","except","foldNodeProp","Context","foldInside","List","ParenthesizedExpression","FunctionDefinition","last","getChild","from","to","languageData","indentOnInput","commentTokens","line","block","open","close","unaryTestsLanguage","top","expressionLanguage","feel","config","language","dialect","parserDialect","contextTracker","trackVariables","contextualLang","completions","flat","LanguageSupport","autocomplete","data","of"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lang-feel",
3
- "version": "2.4.0",
3
+ "version": "3.0.0",
4
4
  "description": "FEEL language support for the CodeMirror code editor",
5
5
  "scripts": {
6
6
  "all": "run-s lint build test",
@@ -8,7 +8,7 @@
8
8
  "start": "SINGLE_START=1 npm run dev",
9
9
  "dev": "run-p 'build -- watch' 'test -- --no-single-run --auto-watch'",
10
10
  "lint": "eslint . --ext ts",
11
- "build": "microbundle -f modern,cjs --target node",
11
+ "build": "microbundle -f modern --target node",
12
12
  "prepare": "npm run build"
13
13
  },
14
14
  "keywords": [
@@ -20,37 +20,32 @@
20
20
  "url": "https://github.com/nikku"
21
21
  },
22
22
  "type": "module",
23
- "source": "src/index.ts",
24
- "main": "dist/index.cjs",
23
+ "source": "./src/index.ts",
24
+ "main": "./dist/index.js",
25
+ "types": "./dist/index.d.ts",
25
26
  "exports": {
26
- "import": "./dist/index.js",
27
- "require": "./dist/index.cjs"
27
+ ".": "./dist/index.js",
28
+ "./package.json": "./package.json"
28
29
  },
29
- "types": "dist/index.d.ts",
30
- "module": "dist/index.js",
31
30
  "sideEffects": false,
32
31
  "license": "MIT",
33
32
  "dependencies": {
34
- "@codemirror/autocomplete": "^6.19.0",
33
+ "@codemirror/autocomplete": "^6.20.0",
35
34
  "@codemirror/language": "^6.11.3",
36
- "@lezer/common": "^1.2.3",
37
- "lezer-feel": "^1.9.0"
35
+ "@lezer/common": "^1.4.0",
36
+ "lezer-feel": "^2.0.0"
38
37
  },
39
38
  "devDependencies": {
40
39
  "@codemirror/state": "^6.5.2",
41
- "@codemirror/view": "^6.38.4",
42
- "@lezer/lr": "^1.4.2",
43
- "@types/karma-chai": "^0.1.7",
40
+ "@codemirror/view": "^6.38.8",
41
+ "@types/karma-chai": "^0.1.8",
44
42
  "@types/karma-mocha": "^1.3.4",
45
43
  "@types/mocha": "^10.0.10",
46
- "@typescript-eslint/eslint-plugin": "^7.18.0",
47
- "@typescript-eslint/parser": "^7.18.0",
48
- "chai": "^4.5.0",
49
- "codemirror": "^6.0.1",
50
- "eslint": "^8.57.0",
51
- "eslint-plugin-bpmn-io": "^1.0.0",
44
+ "chai": "^6.2.1",
45
+ "codemirror": "^6.0.2",
46
+ "eslint": "^9.39.1",
47
+ "eslint-plugin-bpmn-io": "^2.0.0",
52
48
  "karma": "^6.4.4",
53
- "karma-chai": "^0.1.0",
54
49
  "karma-chrome-launcher": "^3.2.0",
55
50
  "karma-debug-launcher": "^0.0.5",
56
51
  "karma-env-preprocessor": "^0.1.1",
@@ -58,19 +53,20 @@
58
53
  "karma-webpack": "^5.0.1",
59
54
  "microbundle": "^0.15.1",
60
55
  "min-dom": "^5.1.1",
61
- "mocha": "^10.8.2",
56
+ "mocha": "^11.7.5",
62
57
  "npm-run-all2": "^8.0.4",
63
- "puppeteer": "^24.0.0",
64
- "ts-loader": "^9.5.2",
65
- "typescript": "^5.7.3",
66
- "webpack": "^5.97.1"
58
+ "puppeteer": "^24.31.0",
59
+ "ts-loader": "^9.5.4",
60
+ "typescript": "^5.9.3",
61
+ "typescript-eslint": "^8.48.0",
62
+ "webpack": "^5.103.0"
67
63
  },
68
64
  "repository": {
69
65
  "type": "git",
70
66
  "url": "https://github.com/nikku/lang-feel.git"
71
67
  },
72
68
  "engines": {
73
- "node": "*"
69
+ "node": ">= 20.12.0"
74
70
  },
75
71
  "files": [
76
72
  "dist"
package/dist/index.cjs DELETED
@@ -1,270 +0,0 @@
1
- var lezerFeel = require('lezer-feel');
2
- var language = require('@codemirror/language');
3
- var autocomplete = require('@codemirror/autocomplete');
4
-
5
- /**
6
- * A collection of FEEL-related [snippets](#autocomplete.snippet).
7
- */
8
- const snippets = [autocomplete.snippetCompletion('function(${params}) ${body}', {
9
- label: 'function',
10
- detail: 'definition',
11
- type: 'keyword'
12
- }), autocomplete.snippetCompletion('for ${var} in ${collection} return ${value}', {
13
- label: 'for',
14
- detail: 'expression',
15
- type: 'keyword'
16
- }), autocomplete.snippetCompletion('every ${var} in ${collection} satisfies ${condition}', {
17
- label: 'every',
18
- detail: 'quantified expression',
19
- type: 'keyword'
20
- }), autocomplete.snippetCompletion('some ${var} in ${collection} satisfies ${condition}', {
21
- label: 'some',
22
- detail: 'quantified expression',
23
- type: 'keyword'
24
- }), autocomplete.snippetCompletion('if ${condition} then ${value} else ${other value}', {
25
- label: 'if',
26
- detail: 'block',
27
- type: 'keyword'
28
- }), autocomplete.snippetCompletion('{ ${key}: ${value} }', {
29
- label: 'context',
30
- detail: 'block',
31
- type: 'keyword'
32
- }), autocomplete.snippetCompletion('null', {
33
- label: 'null',
34
- detail: 'literal',
35
- type: 'keyword'
36
- }), autocomplete.snippetCompletion('true', {
37
- label: 'true',
38
- detail: 'literal',
39
- type: 'keyword'
40
- }), autocomplete.snippetCompletion('false', {
41
- label: 'false',
42
- detail: 'literal',
43
- type: 'keyword'
44
- })];
45
-
46
- function contextualKeyword(options) {
47
- const {
48
- context: nodes,
49
- after,
50
- before,
51
- keyword
52
- } = options;
53
- return ifInside({
54
- nodes,
55
- before,
56
- after,
57
- keyword
58
- }, autocomplete.completeFromList([{
59
- label: keyword,
60
- type: 'keyword',
61
- boost: 10
62
- }]));
63
- }
64
- const keywordCompletions = [contextualKeyword({
65
- context: 'InExpression',
66
- keyword: 'in'
67
- }), contextualKeyword({
68
- context: 'IfExpression',
69
- keyword: 'then',
70
- after: 'if',
71
- before: 'else'
72
- }), contextualKeyword({
73
- context: 'IfExpression',
74
- keyword: 'else',
75
- after: 'then'
76
- }), contextualKeyword({
77
- context: 'QuantifiedExpression',
78
- keyword: 'satisfies'
79
- }), contextualKeyword({
80
- context: 'ForExpression',
81
- after: 'InExpressions',
82
- keyword: 'return'
83
- })];
84
- const dontComplete = ['StringLiteral', 'Identifier', 'LineComment', 'BlockComment', 'PathExpression', 'Context', 'Key', 'ParameterName'];
85
- const doComplete = ['Expr', 'ContextEntry'];
86
- function ifExpression(completionSource) {
87
- const allNodes = [...dontComplete, ...doComplete];
88
- return context => {
89
- const {
90
- state,
91
- pos
92
- } = context;
93
- const match = matchUp(language.syntaxTree(state).resolveInner(pos, -1), allNodes);
94
- if (match) {
95
- const [_, name] = match;
96
- if (dontComplete.includes(name)) {
97
- return null;
98
- }
99
- }
100
- return completionSource(context);
101
- };
102
- }
103
- function snippetCompletion(snippets) {
104
- return ifExpression(autocomplete.completeFromList(snippets.map(s => ({
105
- ...s,
106
- type: 'text'
107
- }))));
108
- }
109
- function matchLeft(node, position, nodes) {
110
- return matchChildren(node, position, nodes, -1);
111
- }
112
- function matchRight(node, position, nodes) {
113
- return matchChildren(node, position, nodes, 1);
114
- }
115
- function matchChildren(node, position, nodes, direction) {
116
- let child = node[direction > 0 ? 'childAfter' : 'childBefore'](position);
117
- while (child) {
118
- if (nodes.includes(child.name)) {
119
- return child;
120
- }
121
- if (child.type.isError && child.firstChild) {
122
- if (nodes.includes(child.firstChild.name)) {
123
- return child.firstChild;
124
- }
125
- }
126
- child = child[direction > 0 ? 'nextSibling' : 'prevSibling'];
127
- }
128
- return null;
129
- }
130
- function matchUp(node, nodeNames) {
131
- if (!Array.isArray(nodeNames)) {
132
- nodeNames = [nodeNames];
133
- }
134
- for (; node; node = node.parent) {
135
- const nodeType = node.type;
136
- const matchedName = nodeNames.find(name => name && nodeType.is(name));
137
- if (matchedName) {
138
- return [node, matchedName];
139
- }
140
- if (nodeType.isTop) {
141
- break;
142
- }
143
- }
144
- return null;
145
- }
146
- function ifInside(options, source) {
147
- const {
148
- nodes,
149
- before,
150
- after,
151
- keyword
152
- } = options;
153
- return context => {
154
- const {
155
- state,
156
- pos
157
- } = context;
158
- const match = matchUp(language.syntaxTree(state).resolveInner(pos, -1), nodes);
159
- if (!match) {
160
- return null;
161
- }
162
- const [node] = match;
163
- if (matchLeft(node, pos, [keyword, before])) {
164
- return null;
165
- }
166
- if (matchRight(node, pos, [keyword, after])) {
167
- return null;
168
- }
169
- if (after && !matchLeft(node, pos, [after])) {
170
- return null;
171
- }
172
- return source(context);
173
- };
174
- }
175
-
176
- /**
177
- * A FEEL language provider based on the
178
- * [Lezer FEEL parser](https://github.com/nikku/lezer-feel),
179
- * extended with highlighting and indentation information.
180
- */
181
- const feelLanguage = language.LRLanguage.define({
182
- parser: lezerFeel.parser.configure({
183
- props: [language.indentNodeProp.add({
184
- 'Context': language.delimitedIndent({
185
- closing: '}'
186
- }),
187
- 'List FilterExpression': language.delimitedIndent({
188
- closing: ']'
189
- }),
190
- 'ParenthesizedExpression FunctionInvocation': language.continuedIndent({
191
- except: /^\s*\)/
192
- }),
193
- 'ForExpression QuantifiedExpression IfExpression': language.continuedIndent({
194
- except: /^\s*(then|else|return|satisfies)\b/
195
- }),
196
- 'FunctionDefinition': language.continuedIndent({
197
- except: /^\s*(\(|\))/
198
- })
199
- }), language.foldNodeProp.add({
200
- Context: language.foldInside,
201
- List: language.foldInside,
202
- ParenthesizedExpression: language.foldInside,
203
- FunctionDefinition(node) {
204
- const last = node.getChild(')');
205
- if (!last) return null;
206
- return {
207
- from: last.to,
208
- to: node.to
209
- };
210
- }
211
- })]
212
- }),
213
- languageData: {
214
- indentOnInput: /^\s*(\)|\}|\]|then|else|return|satisfies)$/,
215
- commentTokens: {
216
- line: '//',
217
- block: {
218
- open: '/*',
219
- close: '*/'
220
- }
221
- }
222
- }
223
- });
224
- /**
225
- * A language provider for FEEL Unary Tests
226
- */
227
- const unaryTestsLanguage = feelLanguage.configure({
228
- top: 'UnaryTests'
229
- }, 'FEEL unary tests');
230
- /**
231
- * Language provider for FEEL Expression
232
- */
233
- const expressionLanguage = feelLanguage.configure({
234
- top: 'Expression'
235
- }, 'FEEL expression');
236
- /**
237
- * Feel language support for CodeMirror.
238
- *
239
- * Includes [snippet](#lang-feel.snippets)
240
- */
241
- function feel(config = {}) {
242
- const language$1 = config.dialect === 'unaryTests' ? unaryTestsLanguage : expressionLanguage;
243
- const dialect = config.parserDialect;
244
- const contextTracker = lezerFeel.trackVariables(config.context);
245
- const contextualLang = language$1.configure({
246
- contextTracker,
247
- dialect
248
- });
249
- const completions = config.completions || [snippetCompletion(snippets), keywordCompletions].flat();
250
- return new language.LanguageSupport(contextualLang, [...completions.map(autocomplete => contextualLang.data.of({
251
- autocomplete
252
- }))]);
253
- }
254
-
255
- exports.contextualKeyword = contextualKeyword;
256
- exports.doComplete = doComplete;
257
- exports.dontComplete = dontComplete;
258
- exports.expressionLanguage = expressionLanguage;
259
- exports.feel = feel;
260
- exports.feelLanguage = feelLanguage;
261
- exports.ifExpression = ifExpression;
262
- exports.ifInside = ifInside;
263
- exports.keywordCompletions = keywordCompletions;
264
- exports.matchChildren = matchChildren;
265
- exports.matchLeft = matchLeft;
266
- exports.matchRight = matchRight;
267
- exports.snippetCompletion = snippetCompletion;
268
- exports.snippets = snippets;
269
- exports.unaryTestsLanguage = unaryTestsLanguage;
270
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.cjs","sources":["../src/snippets.ts","../src/completion.ts","../src/feel.ts"],"sourcesContent":["import { Completion, snippetCompletion } from '@codemirror/autocomplete';\n\n/**\n * A collection of FEEL-related [snippets](#autocomplete.snippet).\n */\nexport const snippets: readonly Completion[] = [\n snippetCompletion('function(${params}) ${body}', {\n label: 'function',\n detail: 'definition',\n type: 'keyword'\n }),\n snippetCompletion('for ${var} in ${collection} return ${value}', {\n label: 'for',\n detail: 'expression',\n type: 'keyword'\n }),\n snippetCompletion('every ${var} in ${collection} satisfies ${condition}', {\n label: 'every',\n detail: 'quantified expression',\n type: 'keyword'\n }),\n snippetCompletion('some ${var} in ${collection} satisfies ${condition}', {\n label: 'some',\n detail: 'quantified expression',\n type: 'keyword'\n }),\n snippetCompletion('if ${condition} then ${value} else ${other value}', {\n label: 'if',\n detail: 'block',\n type: 'keyword'\n }),\n snippetCompletion('{ ${key}: ${value} }', {\n label: 'context',\n detail: 'block',\n type: 'keyword'\n }),\n snippetCompletion('null', {\n label: 'null',\n detail: 'literal',\n type: 'keyword'\n }),\n snippetCompletion('true', {\n label: 'true',\n detail: 'literal',\n type: 'keyword'\n }),\n snippetCompletion('false', {\n label: 'false',\n detail: 'literal',\n type: 'keyword'\n })\n];\n","import { syntaxTree } from '@codemirror/language';\nimport { SyntaxNode } from '@lezer/common';\n\nimport {\n CompletionSource,\n Completion,\n completeFromList,\n CompletionContext\n} from '@codemirror/autocomplete';\n\n\nexport function contextualKeyword(options: {\n before?: string,\n after?: string,\n context: string,\n keyword: string\n}) : CompletionSource {\n\n const {\n context: nodes,\n after,\n before,\n keyword\n } = options;\n\n return ifInside({ nodes, before, after, keyword }, completeFromList([\n { label: keyword, type: 'keyword', boost: 10 }\n ]));\n}\n\nexport const keywordCompletions = [\n contextualKeyword({\n context: 'InExpression',\n keyword: 'in'\n }),\n contextualKeyword({\n context: 'IfExpression',\n keyword: 'then',\n after: 'if',\n before: 'else'\n }),\n contextualKeyword({\n context: 'IfExpression',\n keyword: 'else',\n after: 'then'\n }),\n contextualKeyword({\n context: 'QuantifiedExpression',\n keyword: 'satisfies'\n }),\n contextualKeyword({\n context: 'ForExpression',\n after: 'InExpressions',\n keyword: 'return'\n })\n];\n\nexport const dontComplete = [\n 'StringLiteral', 'Identifier',\n 'LineComment', 'BlockComment',\n 'PathExpression', 'Context',\n 'Key', 'ParameterName'\n];\n\nexport const doComplete = [\n 'Expr',\n 'ContextEntry'\n];\n\nexport function ifExpression(completionSource: CompletionSource) : CompletionSource {\n\n const allNodes = [ ...dontComplete, ...doComplete ];\n\n return (context: CompletionContext) => {\n\n const { state, pos } = context;\n\n const match = matchUp(syntaxTree(state).resolveInner(pos, -1), allNodes);\n\n if (match) {\n\n const [ _, name ] = match;\n\n if (dontComplete.includes(name)) {\n return null;\n }\n }\n\n return completionSource(context);\n };\n}\n\nexport function snippetCompletion(snippets: readonly Completion[]) : CompletionSource {\n return ifExpression(\n completeFromList(snippets.map(s => ({ ...s, type: 'text' })))\n );\n}\n\nexport function matchLeft(node: SyntaxNode, position: number, nodes: (string|undefined)[]) : SyntaxNode | null {\n return matchChildren(node, position, nodes, -1);\n}\n\nexport function matchRight(node: SyntaxNode, position: number, nodes: (string|undefined)[]) : SyntaxNode | null {\n return matchChildren(node, position, nodes, 1);\n}\n\nexport function matchChildren(node: SyntaxNode, position: number, nodes: (string|undefined)[], direction: 1 | -1) : SyntaxNode | null {\n\n let child = node[direction > 0 ? 'childAfter' : 'childBefore'](position);\n\n while (child) {\n if (nodes.includes(child.name)) {\n return child;\n }\n\n if (child.type.isError && child.firstChild) {\n if (nodes.includes(child.firstChild.name)) {\n return child.firstChild;\n }\n }\n\n child = child[direction > 0 ? 'nextSibling' : 'prevSibling'];\n }\n\n return null;\n}\n\nfunction matchUp(node: SyntaxNode, nodeNames: string | string[]) : [ SyntaxNode, string ] | null {\n\n if (!Array.isArray(nodeNames)) {\n nodeNames = [ nodeNames ];\n }\n\n for (; node; node = node.parent!) {\n\n const nodeType = node.type;\n\n const matchedName = nodeNames.find(name => name && nodeType.is(name));\n\n if (matchedName) {\n return [ node, matchedName ];\n }\n\n if (nodeType.isTop) {\n break;\n }\n }\n\n return null;\n}\n\nexport function ifInside(options: {\n nodes: string | string[],\n keyword: string,\n before?: string,\n after?: string\n}, source: CompletionSource): CompletionSource {\n\n const {\n nodes,\n before,\n after,\n keyword\n } = options;\n\n return (context) => {\n\n const { state, pos } = context;\n\n const match = matchUp(syntaxTree(state).resolveInner(pos, -1), nodes);\n\n if (!match) {\n return null;\n }\n\n const [ node ] = match;\n\n if (matchLeft(node, pos, [ keyword, before ])) {\n return null;\n }\n\n if (matchRight(node, pos, [ keyword, after ])) {\n return null;\n }\n\n if (after && !matchLeft(node, pos, [ after ])) {\n return null;\n }\n\n return source(context);\n };\n}","import {\n parser,\n trackVariables\n} from 'lezer-feel';\n\nimport {\n LRLanguage,\n LanguageSupport,\n delimitedIndent,\n continuedIndent,\n indentNodeProp,\n foldNodeProp,\n foldInside\n} from '@codemirror/language';\n\nimport {\n snippets\n} from './snippets';\n\nimport {\n keywordCompletions,\n snippetCompletion\n} from './completion';\n\nimport {\n CompletionSource\n} from '@codemirror/autocomplete';\n\n\n/**\n * A FEEL language provider based on the\n * [Lezer FEEL parser](https://github.com/nikku/lezer-feel),\n * extended with highlighting and indentation information.\n */\nexport const feelLanguage = LRLanguage.define({\n parser: parser.configure({\n props: [\n indentNodeProp.add({\n 'Context': delimitedIndent({\n closing: '}'\n }),\n 'List FilterExpression': delimitedIndent({\n closing: ']'\n }),\n 'ParenthesizedExpression FunctionInvocation': continuedIndent({\n except: /^\\s*\\)/\n }),\n 'ForExpression QuantifiedExpression IfExpression': continuedIndent({\n except: /^\\s*(then|else|return|satisfies)\\b/\n }),\n 'FunctionDefinition': continuedIndent({\n except: /^\\s*(\\(|\\))/\n })\n }),\n foldNodeProp.add({\n Context: foldInside,\n List: foldInside,\n ParenthesizedExpression: foldInside,\n FunctionDefinition(node) {\n const last = node.getChild(')');\n\n if (!last) return null;\n\n return {\n from: last.to,\n to: node.to\n };\n }\n })\n ]\n }),\n languageData: {\n indentOnInput: /^\\s*(\\)|\\}|\\]|then|else|return|satisfies)$/,\n commentTokens: {\n line: '//',\n block: {\n open: '/*',\n close: '*/'\n }\n }\n }\n});\n\n/**\n * A language provider for FEEL Unary Tests\n */\nexport const unaryTestsLanguage = feelLanguage.configure({\n top: 'UnaryTests',\n}, 'FEEL unary tests');\n\n/**\n * Language provider for FEEL Expression\n */\nexport const expressionLanguage = feelLanguage.configure({\n top: 'Expression'\n}, 'FEEL expression');\n\n\n\n/**\n * Feel language support for CodeMirror.\n *\n * Includes [snippet](#lang-feel.snippets)\n */\nexport function feel(config: {\n dialect?: 'expression' | 'unaryTests',\n parserDialect?: string,\n completions?: CompletionSource[],\n context?: Record<string, any>\n} = {}) {\n const language = config.dialect === 'unaryTests' ? unaryTestsLanguage : expressionLanguage;\n\n const dialect = config.parserDialect;\n const contextTracker = trackVariables(config.context);\n\n const contextualLang = language.configure({\n contextTracker,\n dialect\n });\n\n const completions = config.completions || [\n snippetCompletion(snippets),\n keywordCompletions,\n ].flat();\n\n return new LanguageSupport(contextualLang, [\n ...(\n completions.map(autocomplete => contextualLang.data.of({\n autocomplete\n }))\n )\n ]);\n\n}"],"names":["snippets","snippetCompletion","label","detail","type","contextualKeyword","options","context","nodes","after","before","keyword","ifInside","completeFromList","boost","keywordCompletions","dontComplete","doComplete","ifExpression","completionSource","allNodes","state","pos","match","matchUp","syntaxTree","resolveInner","_","name","includes","map","s","matchLeft","node","position","matchChildren","matchRight","direction","child","isError","firstChild","nodeNames","Array","isArray","parent","nodeType","matchedName","find","is","isTop","source","feelLanguage","LRLanguage","define","parser","configure","props","indentNodeProp","add","delimitedIndent","closing","continuedIndent","except","foldNodeProp","Context","foldInside","List","ParenthesizedExpression","FunctionDefinition","last","getChild","from","to","languageData","indentOnInput","commentTokens","line","block","open","close","unaryTestsLanguage","top","expressionLanguage","feel","config","language","dialect","parserDialect","contextTracker","trackVariables","contextualLang","completions","flat","LanguageSupport","autocomplete","data","of"],"mappings":"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"}