@traqula/rules-sparql-1-1-adjust 0.0.1-alpha.148 → 0.0.1-alpha.9
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 +5 -3
- package/lib/grammar.d.ts +2 -2
- package/lib/grammar.js.map +1 -1
- package/lib/index.cjs +3255 -1836
- package/lib/index.js.map +1 -1
- package/lib/lexer.d.ts +1 -3
- package/lib/lexer.js +1 -1
- package/lib/lexer.js.map +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Traqula Rules SPARQL 1.1 + ADJUST package
|
|
2
2
|
|
|
3
|
-
|
|
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,4 +1,4 @@
|
|
|
1
|
-
import type { Expression,
|
|
1
|
+
import type { Expression, SparqlGrammarRule } from '@traqula/rules-sparql-1-1';
|
|
2
2
|
import { gram } from '@traqula/rules-sparql-1-1';
|
|
3
3
|
export declare const builtInAdjust: gram.RuleDefExpressionFunctionX<"builtInAdjust", [Expression, Expression]>;
|
|
4
|
-
export declare const existingBuildInCall:
|
|
4
|
+
export declare const existingBuildInCall: SparqlGrammarRule<'existingBuildInCall', Expression>;
|
package/lib/grammar.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grammar.js","sourceRoot":"","sources":["grammar.ts"],"names":[],"mappings":"AACA,OAAO,
|
|
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"]}
|