From 49c90e643439b85043f51ce200fb034b5b08da13 Mon Sep 17 00:00:00 2001 From: Ne_Eo Date: Sun, 19 Jan 2025 20:09:38 +0100 Subject: [PATCH] Fix typo --- hscript/Parser.hx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hscript/Parser.hx b/hscript/Parser.hx index 189e6ce..0b3ffb5 100644 --- a/hscript/Parser.hx +++ b/hscript/Parser.hx @@ -60,10 +60,10 @@ class Parser { /** allows to check for #if / #else in code **/ - public var preprocesorValues : Map = new Map(); + public var preprocessorValues : Map = 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; + inline function get_preprocesorValues() return this.preprocessorValues; + inline function set_preprocesorValues(v) return this.preprocessorValues = v; }