Uses of Interface
com.blackrook.rookscript.resolvers.ScriptScopeResolver
Package
Description
Contains scripting components for the scripting language.
Contains all of the compiler stuff for script creation/disassembly.
Contains various resolver implementations.
Contains script scope resolvers.
-
Uses of ScriptScopeResolver in com.blackrook.rookscript
Modifier and TypeMethodDescriptionScript.getScopeResolver()
Returns this script's scope resolver.ScriptInstance.getScopeResolver()
Returns this script's scope resolver.Modifier and TypeMethodDescriptionvoid
Script.setScopeResolver
(ScriptScopeResolver scopeResolver) Sets this script's scope resolver. -
Uses of ScriptScopeResolver in com.blackrook.rookscript.compiler
Modifier and TypeMethodDescriptionstatic Script
ScriptReader.read
(File file, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver) Reads a script from a starting text file.static Script
ScriptReader.read
(File file, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer) Reads a script from a starting text file.static Script
ScriptReader.read
(File file, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer, ScriptReaderOptions options) Reads a script from a starting text file.static Script
ScriptReader.read
(String text, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver) Reads a script from a String of text.static Script
ScriptReader.read
(String text, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer) Reads a script from a String of text.static Script
ScriptReader.read
(String text, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer, ScriptReaderOptions options) Reads a script from a String of text.static Script
ScriptReader.read
(String streamName, InputStream in, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver) Reads a script.static Script
ScriptReader.read
(String streamName, InputStream in, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer) Reads a script.static Script
ScriptReader.read
(String streamName, InputStream in, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer, ScriptReaderOptions options) Reads a script.static Script
ScriptReader.read
(String streamName, Reader reader, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver) Reads a script from a reader stream.static Script
ScriptReader.read
(String streamName, Reader reader, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer) Reads a script from a reader stream.static Script
ScriptReader.read
(String streamName, Reader reader, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer, ScriptReaderOptions options) Reads a script from a reader stream.static Script
ScriptReader.read
(String streamName, String text, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver) Reads a script from a String of text.static Script
ScriptReader.read
(String streamName, String text, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer) Reads a script from a String of text.static Script
ScriptReader.read
(String streamName, String text, ScriptHostFunctionResolver functionResolver, ScriptScopeResolver scopeResolver, ScriptReaderIncluder includer, ScriptReaderOptions options) Reads a script from a String of text. -
Uses of ScriptScopeResolver in com.blackrook.rookscript.resolvers
Modifier and TypeFieldDescriptionstatic final ScriptScopeResolver
ScriptScopeResolver.EMPTY
A scope resolver with no scopes. -
Uses of ScriptScopeResolver in com.blackrook.rookscript.resolvers.scope
Modifier and TypeClassDescriptionclass
An single, scoped open variable set in which values can be set.