(int format, LEndianness endianness, BIntegerType integer, BIntegerType sizeT, LBooleanType bool, LNumberType number, LNumberType linteger, LNumberType lfloat, LStringType string, LConstantType constant, LAbsLineInfoType abslineinfo, LLocalType local, LUpvalueType upvalue, LFunctionType function, CodeExtract extractor)
| 26 | public final CodeExtract extractor; |
| 27 | |
| 28 | public LHeader(int format, LEndianness endianness, BIntegerType integer, BIntegerType sizeT, LBooleanType bool, LNumberType number, LNumberType linteger, LNumberType lfloat, LStringType string, LConstantType constant, LAbsLineInfoType abslineinfo, LLocalType local, LUpvalueType upvalue, LFunctionType function, CodeExtract extractor) { |
| 29 | this.format = format; |
| 30 | this.endianness = endianness; |
| 31 | this.integer = integer; |
| 32 | this.sizeT = sizeT; |
| 33 | this.bool = bool; |
| 34 | this.number = number; |
| 35 | this.linteger = linteger; |
| 36 | this.lfloat = lfloat; |
| 37 | this.string = string; |
| 38 | this.constant = constant; |
| 39 | this.abslineinfo = abslineinfo; |
| 40 | this.local = local; |
| 41 | this.upvalue = upvalue; |
| 42 | this.function = function; |
| 43 | this.extractor = extractor; |
| 44 | } |
| 45 | |
| 46 | } |
nothing calls this directly
no outgoing calls
no test coverage detected