diff options
author | ronny | 2003-12-01 08:51:14 +0000 |
---|---|---|
committer | ronny | 2003-12-01 08:51:14 +0000 |
commit | 499610d4bc1d1417145b66c2382f9f1c94661952 (patch) | |
tree | 5fbd1a93dae9064b178131be939d3525518e8538 /frontend/postparse.icl | |
parent | added version resource section (diff) |
use same default fixity and priority (infixl 9) everywhere
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1421 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/postparse.icl')
-rw-r--r-- | frontend/postparse.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/postparse.icl b/frontend/postparse.icl index deb4e0a..fb10aeb 100644 --- a/frontend/postparse.icl +++ b/frontend/postparse.icl @@ -288,7 +288,7 @@ where = (fun_defs, [{ nd_dst = PE_Ident name, nd_alts = rhs_alts, nd_locals = rhs_locals, nd_position = pos } : node_defs], ca) reorganiseLocalDefinitions [PD_Function pos name is_infix args rhs fun_kind : defs] ca - # prio = if is_infix (Prio NoAssoc 9) NoPrio + # prio = if is_infix DefaultPriority NoPrio fun_arity = length args (bodies, fun_kind, defs, ca) = collectFunctionBodies name fun_arity prio fun_kind defs ca (fun_defs, node_defs, ca) = reorganiseLocalDefinitions defs ca |