Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
48ec0f4b01 | ||
|
|
49c90e6434 |
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "hscript",
|
||||
"name": "hscript-improved",
|
||||
"url": "https://github.com/HaxeFoundation/hscript",
|
||||
"license": "MIT",
|
||||
"description": "Haxe Script is a scripting engine for a subset of the Haxe language",
|
||||
|
||||
+5
-2
@@ -60,10 +60,10 @@ class Parser {
|
||||
/**
|
||||
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;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user