@traqula/parser-sparql-1-1-adjust 0.0.1-alpha.9 → 0.0.1
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/lib/index.cjs +2 -8
- package/package.json +7 -7
package/lib/index.cjs
CHANGED
|
@@ -13265,17 +13265,11 @@ var aggregateGroup_concat = {
|
|
|
13265
13265
|
const closeToken = CONSUME(symbols_exports.RParen);
|
|
13266
13266
|
return ACTION(() => {
|
|
13267
13267
|
const F2 = C.factory;
|
|
13268
|
-
return
|
|
13269
|
-
operatorToken.image,
|
|
13270
|
-
Boolean(distinctToken),
|
|
13271
|
-
expr,
|
|
13272
|
-
sep.value,
|
|
13273
|
-
F2.sourceLocation(operatorToken, closeToken)
|
|
13274
|
-
) : F2.aggregate(
|
|
13268
|
+
return F2.aggregate(
|
|
13275
13269
|
operatorToken.image,
|
|
13276
13270
|
Boolean(distinctToken),
|
|
13277
13271
|
expr,
|
|
13278
|
-
" ",
|
|
13272
|
+
sep?.value ?? " ",
|
|
13279
13273
|
F2.sourceLocation(operatorToken, closeToken)
|
|
13280
13274
|
);
|
|
13281
13275
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@traqula/parser-sparql-1-1-adjust",
|
|
3
|
-
"version": "0.0.1
|
|
3
|
+
"version": "0.0.1",
|
|
4
4
|
"description": "SPARQL 1.1 + ADJUST parser",
|
|
5
5
|
"lsd:module": true,
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
"spec:earl": "yarn spec:earl:query && yarn spec:earl:update"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@traqula/core": "^0.0.1
|
|
46
|
-
"@traqula/parser-sparql-1-1": "^0.0.1
|
|
47
|
-
"@traqula/rules-sparql-1-1": "^0.0.1
|
|
48
|
-
"@traqula/rules-sparql-1-1-adjust": "^0.0.1
|
|
45
|
+
"@traqula/core": "^0.0.1",
|
|
46
|
+
"@traqula/parser-sparql-1-1": "^0.0.1",
|
|
47
|
+
"@traqula/rules-sparql-1-1": "^0.0.1",
|
|
48
|
+
"@traqula/rules-sparql-1-1-adjust": "^0.0.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@rdfjs/types": "^2.0.0",
|
|
52
|
-
"@traqula/test-utils": "^0.0.1
|
|
52
|
+
"@traqula/test-utils": "^0.0.1",
|
|
53
53
|
"rdf-data-factory": "^2.0.1",
|
|
54
54
|
"rdf-test-suite": "^2.0.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "2bfa8222d972fda2ca6f0adc80a5362e0d583871"
|
|
57
57
|
}
|