diff options
author | Hans Bolinder <[email protected]> | 2010-05-31 11:48:19 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-05-31 11:48:19 +0000 |
commit | 61ed122ce262cbaaf39738f4381b01de54fe86ca (patch) | |
tree | a69f6f8d57c6c847ae1d9d166874ba7ca8c8b0f9 /lib/stdlib/test | |
parent | ed3c6a7c5103424af34528f83fee2ac9ecc14c1b (diff) | |
download | otp-61ed122ce262cbaaf39738f4381b01de54fe86ca.tar.gz otp-61ed122ce262cbaaf39738f4381b01de54fe86ca.tar.bz2 otp-61ed122ce262cbaaf39738f4381b01de54fe86ca.zip |
OTP-8657 New Erlang scanner tokens: '..' and '...'
The Erlang scanner has been augmented with two new tokens: .. and ....
Diffstat (limited to 'lib/stdlib/test')
-rw-r--r-- | lib/stdlib/test/erl_scan_SUITE.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/stdlib/test/erl_scan_SUITE.erl b/lib/stdlib/test/erl_scan_SUITE.erl index afeb67eeb1..32eb97bc92 100644 --- a/lib/stdlib/test/erl_scan_SUITE.erl +++ b/lib/stdlib/test/erl_scan_SUITE.erl @@ -185,7 +185,7 @@ reserved_words() -> 'andalso', 'orelse', 'end', 'fun', 'if', 'let', 'of', 'query', 'receive', 'when', 'bnot', 'not', 'div', 'rem', 'band', 'and', 'bor', 'bxor', 'bsl', 'bsr', - 'or', 'xor'] , + 'or', 'xor'], [begin ?line {RW, true} = {RW, erl_scan:reserved_word(RW)}, S = atom_to_list(RW), @@ -244,6 +244,9 @@ punctuations() -> {'\\',1},{'^',1},{'`',1},{'~',1}], ?line test_string("#&*+/:<>?@\\^`~", PTs2), + ?line test_string(".. ", [{'..',1}]), + ?line test("1 .. 2"), + ?line test_string("...", [{'...',1}]), ok. comments() -> |