Skip to content

Commit

Permalink
fix haxe 3.4 compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
dpomier committed Dec 21, 2023
1 parent 826618d commit 75591a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yield/parser/env/WorkEnv.hx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class WorkEnv {
public var yieldKeyword (default, null):String;
public var yieldExplicit (default, null):Bool;
public var yieldExtend (default, null):Bool;
public var positionMapping (default, never):Bool = #if (debug && !no_yield_follow_positions && (haxe_ver >= 4.000) || yield_position_mapping) true #else false #end;
public var positionMapping (default, never):Bool = #if ((haxe_ver >= 4.000) && (debug && !no_yield_follow_positions || yield_position_mapping)) true #else false #end;

public var currentScope (default, null):Scope;
public var scopeCounter (default, null):UInt;
Expand Down

0 comments on commit 75591a4

Please sign in to comment.