Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change ClassParser corresponding to the removal of EIn expr #135

Open
DleanJeans opened this issue Aug 26, 2017 · 0 comments
Open

Change ClassParser corresponding to the removal of EIn expr #135

DleanJeans opened this issue Aug 26, 2017 · 0 comments

Comments

@DleanJeans
Copy link

The commit which removed EIf causes this error in MUnit:

HaxeToolkit\haxe\lib\mcover/2,1,1/mcover/macro/ClassParser.hx:353: characters 9-12 : Identifier 'EIn' is not part of haxe.macro.ExprDef (Suggestion: EIf)

A quick workaround is removing the case

case EIn(e1, e2):
	//e.g. for(i in 0...5){}
	e1 = parseExpr(e1);
	e2 = parseExpr(e2);
	expr.expr = EIn(e1, e2);

but I think there must be something else to it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant