@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.
@@ -1099,10 +1099,10 @@ column_list_item
1099
1099
  }
1100
1100
 
1101
1101
  value_alias_clause
1102
- = KW_AS? __ i:(func_call / alias_ident) { return 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:(func_call / alias_ident) { return 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