Skip to content

Commit bc63889

Browse files
authored
Merge pull request #260 from oracle/slashednamefix
handle slash in name
2 parents 3a652ec + 3f8471a commit bc63889

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ fragment ID_START
280280
fragment ID_CONTINUE
281281
: ID_START
282282
| [0-9]
283-
| [. ()]
283+
| [. ()/]
284284
;
285285

286286
// to support variables in IDs that will need to be quoted because of the curly braces
@@ -292,7 +292,7 @@ fragment QUOTED_ID_START
292292

293293
fragment QUOTED_ID_CONTINUE
294294
: ID_CONTINUE
295-
| [@#\-(){}[\]:]
295+
| [@#\-(){}[\]:/]
296296
;
297297

298298
fragment SQUOTED_STRING_CHARS

0 commit comments

Comments
 (0)