Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PopInstruction.cs
Go to the documentation of this file.
1
namespace
System.Linq.Expressions.Interpreter
;
2
3
internal
sealed
class
PopInstruction
:
Instruction
4
{
5
internal
static
readonly
PopInstruction
Instance
=
new
PopInstruction
();
6
7
public
override
int
ConsumedStack
=> 1;
8
9
public
override
string
InstructionName
=>
"Pop"
;
10
11
private
PopInstruction
()
12
{
13
}
14
15
public
override
int
Run
(
InterpretedFrame
frame)
16
{
17
frame.
Pop
();
18
return
1;
19
}
20
}
System.Linq.Expressions.Interpreter.Instruction
Definition
Instruction.cs:6
System.Linq.Expressions.Interpreter.InterpretedFrame.Pop
object Pop()
Definition
InterpretedFrame.cs:90
System.Linq.Expressions.Interpreter.InterpretedFrame
Definition
InterpretedFrame.cs:7
System.Linq.Expressions.Interpreter.PopInstruction.Run
override int Run(InterpretedFrame frame)
Definition
PopInstruction.cs:15
System.Linq.Expressions.Interpreter.PopInstruction.InstructionName
override string InstructionName
Definition
PopInstruction.cs:9
System.Linq.Expressions.Interpreter.PopInstruction.PopInstruction
PopInstruction()
Definition
PopInstruction.cs:11
System.Linq.Expressions.Interpreter.PopInstruction.Instance
static readonly PopInstruction Instance
Definition
PopInstruction.cs:5
System.Linq.Expressions.Interpreter.PopInstruction.ConsumedStack
override int ConsumedStack
Definition
PopInstruction.cs:7
System.Linq.Expressions.Interpreter.PopInstruction
Definition
PopInstruction.cs:4
System.Linq.Expressions.Interpreter
Definition
ActionCallInstruction.cs:3
source
System.Linq.Expressions
System.Linq.Expressions.Interpreter
PopInstruction.cs
Generated by
1.10.0