Represents a method call.
|
| MethodOperation (CompiledMethod method, MethodInfo methodInfo, params CompiledFragment[] arguments) |
|
| MethodOperation (CompiledMethod method, CompiledFragment calledOn, CompiledFragment[] arguments) |
|
override bool | IsMemberAccessor () |
| A value which states if this fragment accesses members (methods/fields) of something. More...
|
|
override Type | OutputType (out CompiledFragment nv) |
| Returns the type that this fragment produces when it's executed. For example, int+int will output another int. More...
|
|
override void | OutputIL (NitroIL into) |
| Generates the IL of this operation into the given stream. More...
|
|
| Operation (CompiledMethod method) |
| Creates a new operation that is part of the given method. More...
|
|
override int | GetLineNumber () |
| Returns the line number this fragment came from. More...
|
|
override bool | IsConstant () |
| Checks if this fragment is a constant value. More...
|
|
bool | IsSet () |
| Checks if this operation is part of a set operation. More...
|
|
Type | EnforceType (ref CompiledFragment input, Type inputType, Type newType) |
| Forces this operation to be a particular type by creating a cast. More...
|
|
Type | Numerical (ref CompiledFragment input, Type inputType, Type defaultType) |
| Forces this operation to have a numerical output. More...
|
|
Type | Numerical (Type typeA, Type typeB, string overloadMethod, ref CompiledFragment newOperation) |
| Attempts to find the named numerical operation that the given types can perform. More...
|
|
Type | MapNumerical (Type typeA, Type typeB) |
| Attempts to make both Input0 and Input1 numerical, returning the output result of an operation if they are. Usually the returned type will be the one with higher accuracy. E.g. adding an int to a long will result in a long. More...
|
|
Type | FindOverload (string methodName, Type typeA, Type typeB, ref CompiledFragment newOperation) |
| Looks for an overloaded numerical operator by the given name (e.g. "Addition"). The name will then have op_ appended to the start of it (as used internally by .NET). If found, the output type of the operation is returned. More...
|
|
| CompiledFragment () |
| An empty constructor used for inheriting this class. More...
|
|
object | ActiveValue () |
| Gets the active value of this fragment. More...
|
|
| CompiledFragment (object value) |
| Creates a new compiled fragment for the given constant value. More...
|
|
bool | IsLogical () |
| Checks if this fragment can be used logically. More...
|
|
Type | OutputType () |
| Returns the type that this fragment produces when it's executed. For example, int+int will output another int. This must only be used when it's known that a fragment won't replace itself. More...
|
|
override CompiledFragment | Compile (CompiledMethod method) |
| Compiles this CodeFragment into a CompiledFragment. More...
|
|
void | EmitValue (Type type, NitroIL into) |
| Emits the Value held by this compiled fragment if possible. More...
|
|
void | Error (string message) |
| Throws an error, outputting the line number it occured on. More...
|
|
void | AddToStart (CodeFragment parent) |
| Adds this code fragment to the beginning of the given parents child set. More...
|
|
void | AddBefore (CodeFragment frag) |
| Adds this code fragment as a child before the given one. More...
|
|
void | AddAfter (CodeFragment frag) |
| Adds this code fragment as a child after the given one. More...
|
|
void | Remove () |
| Removes this fragment from its parent. More...
|
|
void | AddChild (CodeFragment child) |
| Adds the given fragment as a child of this one. More...
|
|
virtual bool | Typeable () |
| Defines if a fragment can be given a :TYPE. E.g. Brackets (for casting, (A):TYPE) and variables can. More...
|
|
int | ChildCount () |
| How many children does this fragment have? More...
|
|
virtual AddResult | AddTo (CodeFragment to, CodeLexer sr) |
| Adds this fragment as a child to the given fragment. It may be overriden by some types of fragment as they may wish to handle it differently. More...
|
|
override string | ToString () |
| Converts this fragment into a code string. More...
|
|