Skip to content

Commit f04471c

Browse files
authored
Issue #783 - Allow dollar sign anywhere in ID or value, quoting is allowed, not required (#786)
1 parent 9d18eb1 commit f04471c

File tree

1 file changed

+1
-1
lines changed
  • core/src/main/antlr4/oracle/weblogic/deploy/yaml

1 file changed

+1
-1
lines changed

core/src/main/antlr4/oracle/weblogic/deploy/yaml/Yaml.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ fragment ID_START
288288
| [a-z]
289289
| [0-9]
290290
| '!'
291+
| '$'
291292
;
292293

293294
fragment ID_CONTINUE
@@ -299,7 +300,6 @@ fragment ID_CONTINUE
299300
// to support variables in IDs that will need to be quoted because of the curly braces
300301
fragment QUOTED_ID_START
301302
: ID_START
302-
| '$'
303303
| '@'
304304
;
305305

0 commit comments

Comments
 (0)