aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/erl_parse.yrl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2016-12-19 15:37:54 +0100
committerHans Bolinder <[email protected]>2016-12-21 15:54:24 +0100
commit6d2380326a67a00eeae31689c00936da6f3526d2 (patch)
treeae55e912947460d2324a5630f2485e23bedf90eb /lib/stdlib/src/erl_parse.yrl
parent1715b9284643150da0f3ea43df42df1a4a90e144 (diff)
downloadotp-6d2380326a67a00eeae31689c00936da6f3526d2.tar.gz
otp-6d2380326a67a00eeae31689c00936da6f3526d2.tar.bz2
otp-6d2380326a67a00eeae31689c00936da6f3526d2.zip
stdlib: Allow characters in types and constant patterns
Characters ($char) can be used in constant pattern expressions. They can also be used in types and contracts.
Diffstat (limited to 'lib/stdlib/src/erl_parse.yrl')
-rw-r--r--lib/stdlib/src/erl_parse.yrl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/stdlib/src/erl_parse.yrl b/lib/stdlib/src/erl_parse.yrl
index 4f38256e6b..5656155c53 100644
--- a/lib/stdlib/src/erl_parse.yrl
+++ b/lib/stdlib/src/erl_parse.yrl
@@ -156,6 +156,7 @@ type -> '#' atom '{' field_types '}' : {type, ?anno('$1'),
record, ['$2'|'$4']}.
type -> binary_type : '$1'.
type -> integer : '$1'.
+type -> char : '$1'.
type -> 'fun' '(' ')' : {type, ?anno('$1'), 'fun', []}.
type -> 'fun' '(' fun_type_100 ')' : '$3'.