ScriptStack 1.0.0
A .NET scripting language
Lade ...
Suche ...
Keine Treffer
Auflistung der Klassen
Hier folgt die Aufzählung aller Klassen, Strukturen, Varianten und Schnittstellen mit einer Kurzbeschreibung:
[Detailebene 1234]
 NScriptStack
 NCollections
 CReadOnlyDictionary
 CReadOnlyICollection
 NCompiler
 CLexerThe lexical analyzer (Lexer) breaks code (written in sentences) into a series of known Token and pass the token stream to the ScriptStack.Compiler.Parser
 CLexerException
 CParserThe parser builds an ScriptStack.Runtime.Executable out of the Token stream returned from the ScriptStack.Compiler.Lexer while checking for correct syntax
 CFunctionDescriptor
 CLoopControl
 CVariable
 CParserException
 CScannerAn interface to modify the default process of reading text files into Script's
 CTokenA lexical token or simply token is a string with an assigned and thus identified meaning
 NRuntime
 CArrayList
 CExecutable
 CExecutionException
 CFunctionA function, forward declared in a script
 CHostThe main interface to create a Host. A Host can implement Routine's to extend its functionality
 CInstructionAn instruction in a virtual intermediate language
 CInterpreterThe Interpreter finally interprets the parse tree in form of a token stream returned from the ScriptStack.Compiler.Parser
 CFunctionFrameFor every forward declared function, a new function frame is created including a memory object holding its local variables. The values are pushed on the stack before they are called
 CMemory
 CModelA Model is an abstract representation of an object your Host works with. It implements Routine's and can be registered by a Host to exted the Host's functionality
 COperand
 CRoutineA Routine is an abstract representation of a method
 CScriptInternal representation of a text file (source code) which can be passed to the Interpreter to execute it
 CScriptStackException
 CManagerAPI entry point