Lines Matching full:array
41 public r: Array<number> | undefined; // resgs
42 public id: Array<string> | undefined; // ids
43 public im: Array<number> | undefined; // imms
49 regs: Array<number> | undefined = undefined,
50 ids: Array<string> | undefined = undefined,
51 imms: Array<number> | undefined = undefined,
68 public i: Array<Ins>; // ins
69 public l: Array<string> | undefined; // labels
70 public ca_tab: Array<CatchTable> | undefined; // catch tabels
71 public v: Array<VariableDebugInfo> | undefined; // variables
75 public ti: Array<number> | undefined; // typeinfo: record type index array, starts from reg_0
76 public es2t: Array<ExportedSymbol2Type> | undefined; // exportedSymbol2Types
77 public ds2t: Array<DeclaredSymbol2Type> | undefined; // declaredSymbol2Types
85 ins: Array<Ins> = [],
86 labs: Array<string> | undefined = undefined,
87 vars: Array<VariableDebugInfo> | undefined = undefined,
88 catchTables: Array<CatchTable> | undefined = undefined,
92 typeInfo: Array<number> | undefined = undefined,
93 exportedSymbol2Types: Array<ExportedSymbol2Type> | undefined = undefined,
94 declaredSymbol2Types: Array<DeclaredSymbol2Type> | undefined = undefined,
125 public functions: Array<Function>;
126 public records: Array<Record>;
128 public strings_arr: Array<string>;
129 public literalArrays: Array<LiteralBuffer>;
150 this.strings_arr = Array.from(this.strings);
252 public moduleRequests: Array<string> = [];
253 public regularImportEntries: Array<RegularImportEntry> = [];
254 public namespaceImportEntries: Array<NamespaceImportEntry> = [];
255 public localExportEntries: Array<LocalExportEntry> = [];
256 public indirectExportEntries: Array<IndirectExportEntry> = [];
257 public starExportEntries: Array<number> = [];