Compare commits

...
Author SHA1 Message Date
FrakitsandGitHub 48ec0f4b01 Update haxelib.json 2025-08-15 13:42:15 +03:00
Ne_Eo 49c90e6434 Fix typo 2025-01-19 20:09:38 +01:00
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -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
View File
@@ -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;
}