Some methods not present in HISE API
-
I am using some methods like
JSON.stringify()
and JSON.parse()When I search in the API for HISE (the one in the app itself) these methods do not show up. They are also not listed in the docs.
I want to get a better understanding for which ES5 methods are available in HISE and which are not.
What is the distinction between methods that are available in HISE and shown in the API index, and those that are available but unlisted?
Is there documentation anywhere on the full list of methods available in HISEScript?
-
I want to get a better understanding for which ES5 methods are available in HISE and which are not.
HISE Script is not JavaScript, it just looks and smells like it :)
You can use
trace()
andstring.parseAsJSON
More info here - https://forum.hise.audio/topic/5310/json-parse-or-parsejson/
Is there documentation anywhere on the full list of methods available in HISEScript?
Most are in the docs, some others I think show up in the auto-complete. The rest you have to look up in the source code or ask on the forum.
-
@d-healey Ahh, understood. Thank you!
-
Most are in the docs, some others I think show up in the auto-complete.
Everything that shows up in autocomplete should be in the docs too. There might be 1-2 classes which are not picked up by the doc generator that creates these from the source code.