diff options
author | johnvg | 2007-11-20 12:16:14 +0000 |
---|---|---|
committer | johnvg | 2007-11-20 12:16:14 +0000 |
commit | cde1ea1e53399d98cfc2e1903a4f410c32d17634 (patch) | |
tree | 9d36bc21edbf81bb8028f3a2e12e88cd42941c7e | |
parent | do not allow a . before (c a) in the type of a constructor, (diff) |
correct previous commit
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1692 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r-- | frontend/parse.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/parse.icl b/frontend/parse.icl index b850f4a..17650b4 100644 --- a/frontend/parse.icl +++ b/frontend/parse.icl @@ -3755,7 +3755,7 @@ where = ([ assign : assigns ], pState) = ([ assign ], tokenBack pState) where - want_array_assignment is_pattern pState + want_array_assignment pState # (index_exprs, pState) = want_index_exprs pState pState = wantToken FunctionContext "array assignment" EqualToken pState (pattern_exp, pState) = wantExpression cIsAPattern pState |