Skip to content

Commit

Permalink
Additional special values
Browse files Browse the repository at this point in the history
  • Loading branch information
worksofliam committed Feb 28, 2022
1 parent b0f6389 commit e28b8fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/language/statement.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const commonMatchers = [
match: [
{ type: `asterisk` },
{ type: `word`, match: (word) =>
[ `CTDATA`, `BLANK`, `BLANKS`, `ZERO`, `ZEROS`, `ON`, `OFF`, `NULL`, `ISO`, `MDY`, `DMY`, `EUR`, `YMD`, `USA`, `SECONDS`, `S`, `MINUTES`, `MN`, `HOURS`, `H`, `DAYS`, `D`, `MONTHS`, `M`, `YEARS`, `Y`, `HIVAL`, `END`, `LOVAL`, `START`, `N`].includes(word.toUpperCase())
[ `CTDATA`, `BLANK`, `BLANKS`, `ZERO`, `ZEROS`, `ON`, `OFF`, `NULL`, `ISO`, `MDY`, `DMY`, `EUR`, `YMD`, `USA`, `SECONDS`, `S`, `MINUTES`, `MN`, `HOURS`, `H`, `DAYS`, `D`, `MONTHS`, `M`, `YEARS`, `Y`, `HIVAL`, `END`, `LOVAL`, `START`, `N`, `OMIT`, `STRING`].includes(word.toUpperCase())
}
],
becomes: {
Expand Down

0 comments on commit e28b8fc

Please sign in to comment.