ABT.Env.Scope.Scope C# (CSharp) Метод

Scope() приватный Метод

private Scope ( List stack_entries, Int32 stack_offset, List global_entries, FunctionType curr_func, List typedef_entries, List enum_entries ) : System
stack_entries List
stack_offset System.Int32
global_entries List
curr_func FunctionType
typedef_entries List
enum_entries List
Результат System
            private Scope(List<Utils.StoreEntry> stack_entries,
                          Int32 stack_offset,
                          List<Utils.StoreEntry> global_entries,
                          FunctionType curr_func,
                          List<Utils.StoreEntry> typedef_entries,
                          List<Utils.StoreEntry> enum_entries) {
                this.locals = stack_entries;
                this.esp_pos = stack_offset;
                this.globals = global_entries;
                this.func = curr_func;
                this.typedefs = typedef_entries;
                this.enums = enum_entries;
            }

Same methods

Env.Scope::Scope ( ) : System
Env.Scope::Scope ( Scope other ) : System