Skip to content

Commit

Permalink
forbid identifiers starting with _, per WDL spec
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Nov 21, 2019
1 parent da7c035 commit da2028f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WDL/_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@
document: version? document_element*
| version? document_element*
CNAME: /[a-zA-Z][a-zA-Z0-9_]*/
COMMENT: "#" /[^\r\n]*/ NEWLINE
%import common.INT
%import common.SIGNED_INT
%import common.FLOAT
%import common.SIGNED_FLOAT
%import common.CNAME
%import common.ESCAPED_STRING
%import common.WS
%import common.NEWLINE
Expand Down

0 comments on commit da2028f

Please sign in to comment.