@checkdigit/eslint-plugin 7.18.0-PR.143-a26e → 7.18.0-PR.143-bebb
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-mjs/athena/validate.mjs +44 -12
- package/dist-mjs/peggy/athena-peggy.mjs +712 -642
- package/package.json +1 -1
- package/src/athena/validate.ts +52 -11
- package/src/peggy/athena-peggy.ts +711 -641
- package/src/peggy/athena.peggy +3 -3
package/src/peggy/athena.peggy
CHANGED
|
@@ -1099,10 +1099,10 @@ column_list_item
|
|
|
1099
1099
|
}
|
|
1100
1100
|
|
|
1101
1101
|
value_alias_clause
|
|
1102
|
-
= KW_AS? __ i:(
|
|
1103
|
-
|
|
1102
|
+
= KW_AS? __ i:(a:alias_ident !(__ LPAREN) { return a; } / func_call) { return i; }
|
|
1103
|
+
|
|
1104
1104
|
alias_clause
|
|
1105
|
-
= KW_AS __ i:(
|
|
1105
|
+
= KW_AS __ i:(a:alias_ident !(__ LPAREN) { return a; } / func_call) { return i; }
|
|
1106
1106
|
/ KW_AS? __ i:ident { return i; }
|
|
1107
1107
|
|
|
1108
1108
|
with_offset
|