This commit is contained in:
Ne_Eo
2025-01-19 20:09:38 +01:00
parent bb46d45d56
commit 49c90e6434
+5 -2
View File
@@ -60,10 +60,10 @@ class Parser {
/** /**
allows to check for #if / #else in code allows to check for #if / #else in code
**/ **/
public var preprocesorValues : Map<String,Dynamic> = new Map(); public var preprocessorValues : Map<String,Dynamic> = new Map();
/** /**
activate JSON compatiblity activate JSON compatibility
**/ **/
public var allowJSON : Bool; public var allowJSON : Bool;
@@ -2094,4 +2094,7 @@ class Parser {
} }
} }
@:noCompletion public var preprocesorValues(get,set) : Map<String,Dynamic>;
inline function get_preprocesorValues() return this.preprocessorValues;
inline function set_preprocesorValues(v) return this.preprocessorValues = v;
} }