Gorgon Game Engine
Instruction.h File Reference
Include dependency graph for Instruction.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  Instruction
 A single instruction. More...
 
struct  Value
 This class contains a parsed value. More...
 

Namespaces

 Gorgon
 Root namespace for Gorgon Game Engine.
 
 Gorgon::Scripting
 This namespace contains Gorgon Script parser and reflection facilities.
 

Enumerations

enum  InstructionType {
  Unknown, FunctionCall, MemberFunctionCall, MethodCall,
  MemberToTemp, MemberToVar, MemberAssignment, MemberMethodCall,
  Assignment, RemoveTemp, SaveToTemp, Jump,
  JumpFalse, JumpTrue, DeclOverload
}
 Describes the type of an instruction. More...
 
enum  ValueType {
  Temp, Literal, Variable, Identifier,
  None
}
 Possible value types. More...