Add bang as a valid char for function names
This commit is contained in:
parent
d3001f337a
commit
0d504f44d9
|
@ -67,7 +67,7 @@ doubleQuote = char '"'
|
||||||
variableStart = upper <|> lower <|> oneOf "_"
|
variableStart = upper <|> lower <|> oneOf "_"
|
||||||
variableChars = upper <|> lower <|> digit <|> oneOf "_"
|
variableChars = upper <|> lower <|> digit <|> oneOf "_"
|
||||||
-- Chars to allow in function names
|
-- Chars to allow in function names
|
||||||
functionChars = variableChars <|> oneOf ":+?-./^@,"
|
functionChars = variableChars <|> oneOf "#:+?-./^@,"
|
||||||
-- Chars to allow in functions using the 'function' keyword
|
-- Chars to allow in functions using the 'function' keyword
|
||||||
extendedFunctionChars = functionChars <|> oneOf "[]*=!"
|
extendedFunctionChars = functionChars <|> oneOf "[]*=!"
|
||||||
specialVariable = oneOf (concat specialVariables)
|
specialVariable = oneOf (concat specialVariables)
|
||||||
|
|
Loading…
Reference in New Issue