| 23 | } |
| 24 | |
| 25 | bool FLuaDynamicBinding::Push(UClass *InClass, const TCHAR *InModuleName, int32 InInitializerTableRef) |
| 26 | { |
| 27 | FLuaDynamicBindingStackNode StackNode; |
| 28 | |
| 29 | StackNode.Class = Class; |
| 30 | StackNode.ModuleName = ModuleName; |
| 31 | StackNode.InitializerTableRef = InitializerTableRef; |
| 32 | |
| 33 | Stack.Push(StackNode); |
| 34 | |
| 35 | Class = InClass; |
| 36 | ModuleName = InModuleName; |
| 37 | InitializerTableRef = InInitializerTableRef; |
| 38 | |
| 39 | return true; |
| 40 | } |
| 41 | |
| 42 | int32 FLuaDynamicBinding::Pop() |
| 43 | { |
no outgoing calls
no test coverage detected