git @ Cat's Eye Technologies Fountain / 7dd76df
Even stronger ignore Chris Pressey 11 months ago
1 changed file(s) with 11 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
3737 both x Identity = x
3838 both x y = Both x y
3939
40 containsLookahead (Lookahead _) = True
41 containsLookahead (Both c1 c2) = containsLookahead c1 || containsLookahead c2
42 containsLookahead (Not c) = containsLookahead c
43 containsLookahead _ = False
44
4045 genTerminal :: Char -> GenState -> GenState
4146 genTerminal c state@Generating{ text=text } = state{ text=(c:text) }
4247
4550 --
4651 getPreCondition :: Expr -> Constraint Value
4752 getPreCondition (Seq exprs) = getPreConditionPrefix Identity exprs
48 getPreCondition (Constraint (Lookahead _)) = Identity
49 getPreCondition (Constraint c) = c
53 getPreCondition (Constraint c) = if containsLookahead c then Identity else c
5054 getPreCondition _ = Identity
5155
5256 getPreConditionPrefix c [] = c
5357 getPreConditionPrefix c (Seq subseq:exprs) = getPreConditionPrefix c (subseq ++ exprs)
54 getPreConditionPrefix c (Constraint (Lookahead _):exprs) = getPreConditionPrefix c exprs
55 getPreConditionPrefix c (Constraint c':exprs) = getPreConditionPrefix (both c c') exprs
58 getPreConditionPrefix c (Constraint c':exprs) =
59 let
60 c'' = if containsLookahead c' then c else (both c c')
61 in
62 getPreConditionPrefix c'' exprs
5663 getPreConditionPrefix c _ = c
5764
5865 getApplicableChoices state choices =