@traqula/rules-sparql-1-1-adjust 0.0.1-alpha.145 → 0.0.1-alpha.176

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/README.md CHANGED
@@ -1,6 +1,8 @@
1
- # TRAQULA Rules SPARQL 1.1 + ADJUST package
1
+ # Traqula Rules SPARQL 1.1 + ADJUST package
2
2
 
3
- TRAQULA rules SPARQL 1.1 + ADJUST contains additional rules required for creating a parser for
3
+ **WARNING:** V2 will come shortly and will have lots of breaking changes.
4
+
5
+ Traqula rules SPARQL 1.1 + ADJUST contains additional rules required for creating a parser for
4
6
  SPARQL 1.1 + ADJUST function from the SPARQL 1.1 rules.
5
7
 
6
8
  ## Installation
@@ -13,4 +15,4 @@ or
13
15
 
14
16
  ```bash
15
17
  yarn add @traqula/rules-sparql-1-1-adjust
16
- ```
18
+ ```
package/lib/grammar.d.ts CHANGED
@@ -1,5 +1,4 @@
1
- import type { RuleDef } from '@traqula/core';
2
- import type { Expression } from "@traqula/rules-sparql-1-1";
1
+ import type { Expression, SparqlGrammarRule } from '@traqula/rules-sparql-1-1';
3
2
  import { gram } from '@traqula/rules-sparql-1-1';
4
3
  export declare const builtInAdjust: gram.RuleDefExpressionFunctionX<"builtInAdjust", [Expression, Expression]>;
5
- export declare const existingBuildInCall: RuleDef<'existingBuildInCall', Expression>;
4
+ export declare const existingBuildInCall: SparqlGrammarRule<'existingBuildInCall', Expression>;
@@ -1 +1 @@
1
- {"version":3,"file":"grammar.js","sourceRoot":"","sources":["grammar.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,SAAS,EAAE,IAAI,EAAC,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExC,MAAM,CAAC,MAAM,aAAa,GAAG,SAAS,CAAC,aAAa,CAAC,CAAC;AAEtD,MAAM,CAAC,MAAM,mBAAmB,GAAuD;IACrF,IAAI,EAAE,qBAAqB;IAC3B,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI;CAC5B,CAAC","sourcesContent":["import type {RuleDef} from '@traqula/core';\nimport type {Expression} from \"@traqula/rules-sparql-1-1\";\nimport {funcExpr2, gram} from '@traqula/rules-sparql-1-1';\nimport { BuiltInAdjust } from './lexer';\n\nexport const builtInAdjust = funcExpr2(BuiltInAdjust);\n\nexport const existingBuildInCall: RuleDef<'existingBuildInCall', Expression> = <const> {\n name: 'existingBuildInCall',\n impl: gram.builtInCall.impl,\n};\n"]}
1
+ {"version":3,"file":"grammar.js","sourceRoot":"","sources":["grammar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExC,MAAM,CAAC,MAAM,aAAa,GAAG,SAAS,CAAC,aAAa,CAAC,CAAC;AAEtD,MAAM,CAAC,MAAM,mBAAmB,GAAiE;IAC/F,IAAI,EAAE,qBAAqB;IAC3B,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI;CAC5B,CAAC","sourcesContent":["import type { Expression, SparqlGrammarRule } from '@traqula/rules-sparql-1-1';\nimport { funcExpr2, gram } from '@traqula/rules-sparql-1-1';\nimport { BuiltInAdjust } from './lexer';\n\nexport const builtInAdjust = funcExpr2(BuiltInAdjust);\n\nexport const existingBuildInCall: SparqlGrammarRule<'existingBuildInCall', Expression> = <const> {\n name: 'existingBuildInCall',\n impl: gram.builtInCall.impl,\n};\n"]}