diff options
author | pieter | 1999-10-20 13:18:08 +0000 |
---|---|---|
committer | pieter | 1999-10-20 13:18:08 +0000 |
commit | baf71d49b62e554a767d7f64052f08133f169e83 (patch) | |
tree | a58f349a34227514c89c35ee19b8045b653559d3 /frontend/scanner.icl | |
parent | improved printing routines for types (diff) |
ExclamationToken is again a reserved sybol in every context
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@24 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/scanner.icl')
-rw-r--r-- | frontend/scanner.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/scanner.icl b/frontend/scanner.icl index 4191c03..c54952f 100644 --- a/frontend/scanner.icl +++ b/frontend/scanner.icl @@ -572,7 +572,7 @@ CheckEveryContext s input "class" -> (ClassToken , input) "instance" -> (InstanceToken , input) "otherwise" -> (OtherwiseToken , input) -// "!" -> (ExclamationToken , input) + "!" -> (ExclamationToken , input) // "::" -> (DoubleColonToken , input) "*/" -> (ErrorToken "Unexpected end of comment, */", input) "infixr" # (error, n, input) = GetPrio input |