├── .gitignore ├── CODE_OF_CONDUCT.md ├── Java Issues and Incompatibilities.md ├── _config.yml ├── config └── checkstyle │ ├── Google Config.xml │ └── Sun Config.xml ├── gradlew ├── gradlew.bat ├── icon ├── HappyNewMoonWithReport 16.ico ├── HappyNewMoonWithReport 512.ico ├── HappyNewMoonWithReport.png └── Stars Within The Moon Icon #050413 » Icons Etc.URL ├── license.txt ├── readme.md ├── settings.gradle ├── spec └── Wasm Variable Types.xlsx └── src ├── main └── java │ └── happynewmoonwithreport │ ├── BytesFile.java │ ├── ElementType.java │ ├── ExportEntry.java │ ├── ExternalKind.java │ ├── FunctionBody.java │ ├── FunctionType.java │ ├── GlobalType.java │ ├── GlobalVariableType.java │ ├── LocalEntry.java │ ├── Memory.java │ ├── Mutability.java │ ├── TableType.java │ ├── Validation.java │ ├── ValueBase.java │ ├── ValueType.java │ ├── Wasm.java │ ├── WasmAddress.java │ ├── WasmDivideByZeroException.java │ ├── WasmDivideOverflowException.java │ ├── WasmFile.java │ ├── WasmFrame.java │ ├── WasmFunction.java │ ├── WasmImport.java │ ├── WasmInstance.java │ ├── WasmInstanceInterface.java │ ├── WasmLabel.java │ ├── WasmModule.java │ ├── WasmRuntimeException.java │ ├── WasmStack.java │ ├── WasmStore.java │ ├── WasmTrapException.java │ ├── opcode │ ├── Drop.java │ ├── F32_const.java │ ├── F64_const.java │ ├── GetLocal.java │ ├── I32_const.java │ ├── I64_const.java │ ├── Memory │ │ ├── F32_load.java │ │ ├── F32_store.java │ │ ├── F64_load.java │ │ ├── F64_store.java │ │ ├── I32_load.java │ │ ├── I32_load16_s.java │ │ ├── I32_load16_u.java │ │ ├── I32_load8_s.java │ │ ├── I32_load8_u.java │ │ ├── I32_store.java │ │ ├── I32_store16.java │ │ ├── I32_store8.java │ │ ├── I64_load.java │ │ ├── I64_load16_s.java │ │ ├── I64_load16_u.java │ │ ├── I64_load32_s.java │ │ ├── I64_load32_u.java │ │ ├── I64_load8_s.java │ │ ├── I64_load8_u.java │ │ ├── I64_store.java │ │ ├── I64_store16.java │ │ ├── I64_store32.java │ │ ├── I64_store8.java │ │ ├── LoadBase.java │ │ └── StoreBase.java │ ├── Select.java │ ├── SetLocal.java │ ├── bitshift │ │ ├── I32_rotl.java │ │ ├── I32_rotr.java │ │ ├── I32_shl.java │ │ ├── I32_shr_s.java │ │ ├── I32_shr_u.java │ │ ├── I64_rotl.java │ │ ├── I64_rotr.java │ │ ├── I64_shl.java │ │ ├── I64_shr_s.java │ │ └── I64_shr_u.java │ ├── bitwise │ │ ├── F32 │ │ │ ├── F32_abs.java │ │ │ ├── F32_copysign.java │ │ │ └── F32_neg.java │ │ └── F64 │ │ │ ├── F64_abs.java │ │ │ ├── F64_copysign.java │ │ │ └── F64_neg.java │ ├── comparison │ │ ├── F32 │ │ │ ├── F32_eq.java │ │ │ ├── F32_ge.java │ │ │ ├── F32_gt.java │ │ │ ├── F32_le.java │ │ │ ├── F32_lt.java │ │ │ └── F32_ne.java │ │ ├── F64 │ │ │ ├── F64_eq.java │ │ │ ├── F64_ge.java │ │ │ ├── F64_gt.java │ │ │ ├── F64_le.java │ │ │ ├── F64_lt.java │ │ │ └── F64_ne.java │ │ ├── I32_eq.java │ │ ├── I32_eqz.java │ │ ├── I32_ge_s.java │ │ ├── I32_ge_u.java │ │ ├── I32_gt_s.java │ │ ├── I32_gt_u.java │ │ ├── I32_le_s.java │ │ ├── I32_le_u.java │ │ ├── I32_lt_s.java │ │ ├── I32_lt_u.java │ │ ├── I32_ne.java │ │ ├── I64_eq.java │ │ ├── I64_eqz.java │ │ ├── I64_ge_s.java │ │ ├── I64_ge_u.java │ │ ├── I64_gt_s.java │ │ ├── I64_gt_u.java │ │ ├── I64_le_s.java │ │ ├── I64_le_u.java │ │ ├── I64_lt_s.java │ │ ├── I64_lt_u.java │ │ └── I64_ne.java │ ├── control │ │ ├── Block.java │ │ ├── End.java │ │ ├── Nop.java │ │ └── Unreachable.java │ ├── convert │ │ ├── I32_extend16_s.java │ │ ├── I32_extend8_s.java │ │ ├── I64_extend16_s.java │ │ ├── I64_extend32_s.java │ │ ├── I64_extend8_s.java │ │ ├── I64_extend_I32_s.java │ │ └── I64_extend_I32_u.java │ ├── countingBits │ │ ├── I32_clz.java │ │ ├── I32_ctz.java │ │ ├── I32_popcnt.java │ │ ├── I64_clz.java │ │ ├── I64_ctz.java │ │ └── I64_popcnt.java │ ├── logic │ │ ├── I32_and.java │ │ ├── I32_or.java │ │ ├── I32_xor.java │ │ ├── I64_and.java │ │ ├── I64_or.java │ │ └── I64_xor.java │ ├── math │ │ ├── I32_add.java │ │ ├── I32_div_s.java │ │ ├── I32_div_u.java │ │ ├── I32_mul.java │ │ ├── I32_rem_s.java │ │ ├── I32_rem_u.java │ │ ├── I32_sub.java │ │ ├── I64_add.java │ │ ├── I64_div_s.java │ │ ├── I64_div_u.java │ │ ├── I64_mul.java │ │ ├── I64_rem_s.java │ │ ├── I64_rem_u.java │ │ ├── I64_sub.java │ │ ├── f32 │ │ │ ├── F32_add.java │ │ │ ├── F32_ceil.java │ │ │ ├── F32_div.java │ │ │ ├── F32_floor.java │ │ │ ├── F32_max.java │ │ │ ├── F32_min.java │ │ │ ├── F32_mul.java │ │ │ ├── F32_nearest.java │ │ │ ├── F32_sqrt.java │ │ │ ├── F32_sub.java │ │ │ └── F32_trunc.java │ │ └── f64 │ │ │ ├── F64_add.java │ │ │ ├── F64_ceil.java │ │ │ ├── F64_div.java │ │ │ ├── F64_floor.java │ │ │ ├── F64_max.java │ │ │ ├── F64_min.java │ │ │ ├── F64_mul.java │ │ │ ├── F64_nearest.java │ │ │ ├── F64_sqrt.java │ │ │ ├── F64_sub.java │ │ │ └── F64_trunc.java │ └── package-info.java │ ├── section │ ├── Section.java │ ├── SectionCode.java │ ├── SectionCustom.java │ ├── SectionExport.java │ ├── SectionFunction.java │ ├── SectionGlobal.java │ ├── SectionMemory.java │ ├── SectionName.java │ ├── SectionStart.java │ ├── SectionStartEmpty.java │ ├── SectionTable.java │ └── SectionType.java │ └── type │ ├── ByteArrayByteOutput.java │ ├── ByteOutput.java │ ├── DataTypeNumber.java │ ├── DataTypeNumberFloat.java │ ├── F32.java │ ├── F64.java │ ├── I32.java │ ├── I64.java │ ├── IntWasm.java │ ├── JavaType │ └── ByteUnsigned.java │ ├── LimitType.java │ ├── MemoryArgument.java │ ├── MemoryType.java │ ├── S32.java │ ├── S64.java │ ├── SInt32.java │ ├── SInt8.java │ ├── U32.java │ ├── U64.java │ ├── UInt16.java │ ├── UInt32.java │ ├── UInt64.java │ ├── UInt8.java │ ├── VarInt32.java │ ├── VarInt64.java │ ├── VarInt7.java │ ├── VarUInt1.java │ ├── VarUInt32.java │ ├── VarUInt7.java │ ├── WasmString.java │ ├── WasmVector.java │ ├── package-info.java │ └── utility │ ├── Hex.java │ └── MathWBS.java └── test ├── groovy └── happynewmoonwithreport │ ├── GlobalTypeTest.groovy │ ├── MutabilityTest.groovy │ ├── UtilHappy.groovy │ ├── WasmAddressTest.groovy │ ├── WasmModuleTest.groovy │ ├── WasmStackTest.groovy │ ├── example │ └── SimpleTest.groovy │ ├── opcode │ ├── DropTest.groovy │ ├── GetLocalTest.groovy │ ├── I32ConstTest.groovy │ ├── I64ConstTest.groovy │ ├── Memory │ │ ├── F32_loadTest.groovy │ │ ├── F32_storeTest.groovy │ │ ├── F64_loadTest.groovy │ │ ├── F64_storeTest.groovy │ │ ├── I32_load16_s_Test.groovy │ │ ├── I32_load16_u_Test.groovy │ │ ├── I32_load8_s_Test.groovy │ │ ├── I32_load8_u_Test.groovy │ │ ├── I32_loadTest.groovy │ │ ├── I32_load_memoryDoesNotExistsTest.groovy │ │ ├── I32_store16Test.groovy │ │ ├── I32_store8Test.groovy │ │ ├── I32_storeTest.groovy │ │ ├── I32_store_load_roundTripTest.groovy │ │ ├── I64_load16_s_Test.groovy │ │ ├── I64_load16_u_StoreAndLoad_Test.groovy │ │ ├── I64_load16_u_Test.groovy │ │ ├── I64_load32_s_StoreAndLoad_Test.groovy │ │ ├── I64_load32_s_Test.groovy │ │ ├── I64_load32_u_StoreAndLoad_Test.groovy │ │ ├── I64_load32_u_Test.groovy │ │ ├── I64_load8_s_Test.groovy │ │ ├── I64_load8_u_Test.groovy │ │ ├── I64_store16Test.groovy │ │ ├── I64_store32Test.groovy │ │ ├── I64_store8Test.groovy │ │ └── I64_storeTest.groovy │ ├── SelectTest.groovy │ ├── SetLocalTest.groovy │ ├── bitshift │ │ ├── I32_rotlTest.groovy │ │ ├── I32_rotrTest.groovy │ │ ├── I32_shlTest.groovy │ │ ├── I32_shr_sTest.groovy │ │ ├── I32_shr_uTest.groovy │ │ ├── I64_rotlTest.groovy │ │ ├── I64_rotrTest.groovy │ │ ├── I64_shlTest.groovy │ │ ├── I64_shr_sTest.groovy │ │ └── I64_shr_uTest.groovy │ ├── bitwise │ │ ├── F32 │ │ │ ├── F32_absTest.groovy │ │ │ ├── F32_copysignTest.groovy │ │ │ └── F32_negTest.groovy │ │ └── F64 │ │ │ ├── F64_absTest.groovy │ │ │ ├── F64_copysignTest.groovy │ │ │ └── F64_negTest.groovy │ ├── comparison │ │ ├── F32 │ │ │ ├── F32_eqTest.groovy │ │ │ ├── F32_geTest.groovy │ │ │ ├── F32_gtTest.groovy │ │ │ ├── F32_leTest.groovy │ │ │ ├── F32_ltTest.groovy │ │ │ └── F32_neTest.groovy │ │ ├── F64 │ │ │ ├── F64_eqTest.groovy │ │ │ ├── F64_geTest.groovy │ │ │ ├── F64_gtTest.groovy │ │ │ ├── F64_leTest.groovy │ │ │ ├── F64_ltTest.groovy │ │ │ └── F64_neTest.groovy │ │ ├── I32_eqTest.groovy │ │ ├── I32_eqzTest.groovy │ │ ├── I32_ge_sTest.groovy │ │ ├── I32_ge_uTest.groovy │ │ ├── I32_gt_sTest.groovy │ │ ├── I32_gt_uTest.groovy │ │ ├── I32_le_sTest.groovy │ │ ├── I32_le_uTest.groovy │ │ ├── I32_lt_sTest.groovy │ │ ├── I32_lt_uTest.groovy │ │ ├── I32_neTest.groovy │ │ ├── I64_eqTest.groovy │ │ ├── I64_eqzTest.groovy │ │ ├── I64_ge_sTest.groovy │ │ ├── I64_ge_uTest.groovy │ │ ├── I64_gt_sTest.groovy │ │ ├── I64_gt_uTest.groovy │ │ ├── I64_le_sTest.groovy │ │ ├── I64_le_uTest.groovy │ │ ├── I64_lt_sTest.groovy │ │ ├── I64_lt_uTest.groovy │ │ └── I64_neTest.groovy │ ├── control │ │ ├── BlockTest.groovy │ │ ├── NopTest.groovy │ │ └── UnreachableTest.groovy │ ├── convert │ │ ├── I32_extend16_s_Test.groovy │ │ ├── I32_extend8_s_Test.groovy │ │ ├── I64_extend16_s_Test.groovy │ │ ├── I64_extend32_s_Test.groovy │ │ ├── I64_extend8_s_Test.groovy │ │ ├── I64_extend_I32_s_Test.groovy │ │ └── I64_extend_I32_u_Test.groovy │ ├── countingBits │ │ ├── I32_clz_Test.groovy │ │ ├── I32_ctz_Test.groovy │ │ ├── I32_popcnt_Test.groovy │ │ ├── I64_clz_Test.groovy │ │ ├── I64_ctz_Test.groovy │ │ └── I64_popcnt_Test.groovy │ ├── logic │ │ ├── I32_andTest.groovy │ │ ├── I32_orTest.groovy │ │ ├── I32_xorTest.groovy │ │ ├── I64_andTest.groovy │ │ ├── I64_orTest.groovy │ │ └── I64_xorTest.groovy │ └── math │ │ ├── F32 │ │ ├── F32_NearestTest.groovy │ │ ├── F32_addTest.groovy │ │ ├── F32_ceilTest.groovy │ │ ├── F32_divTest.groovy │ │ ├── F32_floorTest.groovy │ │ ├── F32_maxTest.groovy │ │ ├── F32_minTest.groovy │ │ ├── F32_mulTest.groovy │ │ ├── F32_sqrtTest.groovy │ │ ├── F32_subTest.groovy │ │ ├── F32_truncTest.groovy │ │ └── Floating Point.md │ │ ├── F64 │ │ ├── F64_addTest.groovy │ │ ├── F64_ceilTest.groovy │ │ ├── F64_divTest.groovy │ │ ├── F64_floorTest.groovy │ │ ├── F64_maxTest.groovy │ │ ├── F64_minTest.groovy │ │ ├── F64_mulTest.groovy │ │ ├── F64_nearestTest.groovy │ │ ├── F64_sqrtTest.groovy │ │ ├── F64_subTest.groovy │ │ └── F64_truncTest.groovy │ │ ├── I32_addTest.groovy │ │ ├── I32_div_sTest.groovy │ │ ├── I32_div_uTest.groovy │ │ ├── I32_mulTest.groovy │ │ ├── I32_rem_sTest.groovy │ │ ├── I32_rem_uTest.groovy │ │ ├── I32_subTest.groovy │ │ ├── I64_addTest.groovy │ │ ├── I64_div_sTest.groovy │ │ ├── I64_div_uTest.groovy │ │ ├── I64_mulTest.groovy │ │ ├── I64_rem_sTest.groovy │ │ ├── I64_rem_uTest.groovy │ │ └── I64_subTest.groovy │ ├── type │ ├── F32GroovyTest.groovy │ ├── F64GroovyTest.groovy │ ├── I32ConstructorByteTest.groovy │ ├── I32GetBytes_Test.groovy │ ├── I32Test.groovy │ ├── I64ConstructorByteTest.groovy │ ├── I64GetBytes_Test.groovy │ ├── I64Test.groovy │ ├── Int32GTest.groovy │ ├── IntWasmTest.groovy │ ├── JavaType │ │ └── ByteUnsignedTest.groovy │ ├── RelativeOperator_S64_Test.groovy │ ├── RelativeOperator_U64_Test.groovy │ ├── S32Test.groovy │ └── VarUInt1BooleanValueTest.groovy │ └── validation │ ├── FunctionTypeTest.groovy │ └── ResizeableLimitsTest.groovy ├── java └── happynewmoonwithreport │ ├── ElementTypeTest.java │ ├── FunctionBodyTest.java │ ├── LocalEntryTest.java │ ├── MemoryTest.java │ ├── ValueTypeTest.java │ ├── WasmVersionTest.java │ ├── example │ └── CsvSourceExampleTest.java │ ├── intergration │ └── WasmFactorialLongTest.java │ ├── loadFromWasm │ ├── WasmAdd32Test.java │ ├── WasmBlockSingularTest.java │ ├── WasmI32EqualTest.java │ ├── WasmI32SubTest.java │ └── WasmI32Sub_2_Test.java │ ├── opcode │ ├── I32_eqTest5.java │ ├── Memory │ │ └── I64LoadTestJUnit.java │ └── WasmInstanceStub.java │ ├── section │ ├── SectionCodeTest.java │ ├── SectionExportTest.java │ ├── SectionFunctionTest.java │ ├── SectionGlobalTest.java │ ├── SectionMemoryTest.java │ ├── SectionStartTest.java │ ├── SectionTableTest.java │ └── SectionTypeTest.java │ ├── type │ ├── F32Test.java │ ├── F64Test.java │ ├── FloatTest.java │ ├── I32ConstructorBytesSizeTest.java │ ├── Int32Test.java │ ├── Int64WasmTest.java │ ├── Int8Test.java │ ├── NaNValueTest.java │ ├── NumberHelper.java │ ├── U64Test.java │ ├── UInt64Test.java │ ├── Uint16Test.java │ ├── Uint32EqualTest.java │ ├── Uint32Test.java │ ├── Uint8Test.java │ ├── VarInt32LoopTest.java │ ├── VarInt32Test.java │ ├── VarInt64LoopTest.java │ ├── VarInt64Test.java │ ├── VarInt7LoopTest.java │ ├── VarInt7Test.java │ ├── VarUInt1Test.java │ ├── VarUInt32Test.java │ ├── VarUInt7LoopTest.java │ ├── VarUInt7Test.java │ ├── WasmStringTest.java │ ├── WasmVectorTest.java │ └── isBoundByIntegerTest.java │ ├── util │ └── converter │ │ ├── StringToByteArrayConverter.java │ │ ├── StringToByteArrayConverterTest.java │ │ ├── StringToIntegerConverter.java │ │ └── StringToIntegerConverterTest.java │ └── validation │ └── WasmAdd32ValidationTest.java └── resources ├── add32 ├── add32 readme.txt ├── add32.wasm └── add32.wast ├── factorialLong ├── factorialLong readme.txt ├── factorialLong.c ├── factorialLong.wasm └── factorialLong.wast ├── i32Equal ├── i32Equal.wasm └── i32Equal.wast ├── i32Sub ├── I32Sub.wasm └── i32Sub.wast ├── wasm-project Block-Singular ├── README.md ├── build.ts ├── out │ ├── main.wasm │ └── readme.md ├── package.json └── src │ ├── main.html │ ├── main.js │ └── main.wat └── wasm-project-i32Sub ├── README.md ├── build.ts ├── out ├── main.wasm └── readme.txt └── src ├── main.html ├── main.js └── main.wat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Java Issues and Incompatibilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/Java Issues and Incompatibilities.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/_config.yml -------------------------------------------------------------------------------- /config/checkstyle/Google Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/config/checkstyle/Google Config.xml -------------------------------------------------------------------------------- /config/checkstyle/Sun Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/config/checkstyle/Sun Config.xml -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/gradlew.bat -------------------------------------------------------------------------------- /icon/HappyNewMoonWithReport 16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/icon/HappyNewMoonWithReport 16.ico -------------------------------------------------------------------------------- /icon/HappyNewMoonWithReport 512.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/icon/HappyNewMoonWithReport 512.ico -------------------------------------------------------------------------------- /icon/HappyNewMoonWithReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/icon/HappyNewMoonWithReport.png -------------------------------------------------------------------------------- /icon/Stars Within The Moon Icon #050413 » Icons Etc.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/icon/Stars Within The Moon Icon #050413 » Icons Etc.URL -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/readme.md -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/settings.gradle -------------------------------------------------------------------------------- /spec/Wasm Variable Types.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/spec/Wasm Variable Types.xlsx -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/BytesFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/BytesFile.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/ElementType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/ElementType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/ExportEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/ExportEntry.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/ExternalKind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/ExternalKind.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/FunctionBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/FunctionBody.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/FunctionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/FunctionType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/GlobalType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/GlobalType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/GlobalVariableType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/GlobalVariableType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/LocalEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/LocalEntry.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/Memory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/Memory.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/Mutability.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/Mutability.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/TableType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/TableType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/Validation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/Validation.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/ValueBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/ValueBase.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/ValueType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/ValueType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/Wasm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/Wasm.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmAddress.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmDivideByZeroException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmDivideByZeroException.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmDivideOverflowException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmDivideOverflowException.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmFile.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmFrame.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmFunction.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmImport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmImport.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmInstance.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmInstanceInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmInstanceInterface.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmLabel.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmModule.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmRuntimeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmRuntimeException.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmStack.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmStore.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/WasmTrapException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/WasmTrapException.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Drop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Drop.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/F32_const.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/F32_const.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/F64_const.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/F64_const.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/GetLocal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/GetLocal.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/I32_const.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/I32_const.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/I64_const.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/I64_const.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/F32_load.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/F32_load.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/F32_store.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/F32_store.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/F64_load.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/F64_load.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/F64_store.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/F64_store.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I32_load.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I32_load.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I32_load16_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I32_load16_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I32_load16_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I32_load16_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I32_load8_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I32_load8_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I32_load8_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I32_load8_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I32_store.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I32_store.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I32_store16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I32_store16.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I32_store8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I32_store8.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_load.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_load.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_load16_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_load16_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_load16_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_load16_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_load32_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_load32_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_load32_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_load32_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_load8_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_load8_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_load8_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_load8_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_store.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_store.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_store16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_store16.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_store32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_store32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/I64_store8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/I64_store8.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/LoadBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/LoadBase.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Memory/StoreBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Memory/StoreBase.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/Select.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/Select.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/SetLocal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/SetLocal.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I32_rotl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I32_rotl.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I32_rotr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I32_rotr.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I32_shl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I32_shl.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I32_shr_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I32_shr_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I32_shr_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I32_shr_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I64_rotl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I64_rotl.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I64_rotr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I64_rotr.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I64_shl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I64_shl.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I64_shr_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I64_shr_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitshift/I64_shr_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitshift/I64_shr_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitwise/F32/F32_abs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitwise/F32/F32_abs.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitwise/F32/F32_copysign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitwise/F32/F32_copysign.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitwise/F32/F32_neg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitwise/F32/F32_neg.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitwise/F64/F64_abs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitwise/F64/F64_abs.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitwise/F64/F64_copysign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitwise/F64/F64_copysign.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/bitwise/F64/F64_neg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/bitwise/F64/F64_neg.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_eq.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_eq.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_ge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_ge.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_gt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_gt.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_le.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_le.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_lt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_lt.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_ne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F32/F32_ne.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_eq.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_eq.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_ge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_ge.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_gt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_gt.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_le.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_le.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_lt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_lt.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_ne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/F64/F64_ne.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_eq.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_eq.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_eqz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_eqz.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_ge_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_ge_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_ge_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_ge_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_gt_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_gt_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_gt_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_gt_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_le_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_le_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_le_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_le_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_lt_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_lt_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_lt_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_lt_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I32_ne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I32_ne.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_eq.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_eq.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_eqz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_eqz.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_ge_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_ge_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_ge_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_ge_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_gt_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_gt_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_gt_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_gt_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_le_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_le_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_le_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_le_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_lt_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_lt_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_lt_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_lt_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/comparison/I64_ne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/comparison/I64_ne.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/control/Block.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/control/Block.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/control/End.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/control/End.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/control/Nop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/control/Nop.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/control/Unreachable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/control/Unreachable.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/convert/I32_extend16_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/convert/I32_extend16_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/convert/I32_extend8_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/convert/I32_extend8_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/convert/I64_extend16_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/convert/I64_extend16_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/convert/I64_extend32_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/convert/I64_extend32_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/convert/I64_extend8_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/convert/I64_extend8_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/convert/I64_extend_I32_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/convert/I64_extend_I32_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/convert/I64_extend_I32_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/convert/I64_extend_I32_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/countingBits/I32_clz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/countingBits/I32_clz.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/countingBits/I32_ctz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/countingBits/I32_ctz.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/countingBits/I32_popcnt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/countingBits/I32_popcnt.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/countingBits/I64_clz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/countingBits/I64_clz.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/countingBits/I64_ctz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/countingBits/I64_ctz.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/countingBits/I64_popcnt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/countingBits/I64_popcnt.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/logic/I32_and.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/logic/I32_and.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/logic/I32_or.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/logic/I32_or.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/logic/I32_xor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/logic/I32_xor.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/logic/I64_and.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/logic/I64_and.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/logic/I64_or.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/logic/I64_or.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/logic/I64_xor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/logic/I64_xor.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I32_add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I32_add.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I32_div_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I32_div_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I32_div_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I32_div_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I32_mul.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I32_mul.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I32_rem_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I32_rem_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I32_rem_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I32_rem_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I32_sub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I32_sub.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I64_add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I64_add.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I64_div_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I64_div_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I64_div_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I64_div_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I64_mul.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I64_mul.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I64_rem_s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I64_rem_s.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I64_rem_u.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I64_rem_u.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/I64_sub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/I64_sub.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_add.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_ceil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_ceil.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_div.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_div.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_floor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_floor.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_max.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_max.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_min.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_min.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_mul.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_mul.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_nearest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_nearest.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_sqrt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_sqrt.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_sub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_sub.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f32/F32_trunc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f32/F32_trunc.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_add.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_add.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_ceil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_ceil.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_div.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_div.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_floor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_floor.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_max.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_max.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_min.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_min.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_mul.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_mul.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_nearest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_nearest.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_sqrt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_sqrt.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_sub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_sub.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/math/f64/F64_trunc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/math/f64/F64_trunc.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/opcode/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/opcode/package-info.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/Section.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/Section.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionCode.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionCustom.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionExport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionExport.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionFunction.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionGlobal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionGlobal.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionMemory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionMemory.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionName.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionStart.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionStartEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionStartEmpty.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionTable.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/section/SectionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/section/SectionType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/ByteArrayByteOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/ByteArrayByteOutput.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/ByteOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/ByteOutput.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/DataTypeNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/DataTypeNumber.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/DataTypeNumberFloat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/DataTypeNumberFloat.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/F32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/F32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/F64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/F64.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/I32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/I32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/I64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/I64.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/IntWasm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/IntWasm.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/JavaType/ByteUnsigned.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/JavaType/ByteUnsigned.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/LimitType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/LimitType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/MemoryArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/MemoryArgument.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/MemoryType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/MemoryType.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/S32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/S32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/S64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/S64.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/SInt32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/SInt32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/SInt8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/SInt8.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/U32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/U32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/U64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/U64.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/UInt16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/UInt16.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/UInt32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/UInt32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/UInt64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/UInt64.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/UInt8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/UInt8.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/VarInt32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/VarInt32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/VarInt64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/VarInt64.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/VarInt7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/VarInt7.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/VarUInt1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/VarUInt1.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/VarUInt32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/VarUInt32.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/VarUInt7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/VarUInt7.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/WasmString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/WasmString.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/WasmVector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/WasmVector.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/package-info.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/utility/Hex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/utility/Hex.java -------------------------------------------------------------------------------- /src/main/java/happynewmoonwithreport/type/utility/MathWBS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/main/java/happynewmoonwithreport/type/utility/MathWBS.java -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/GlobalTypeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/GlobalTypeTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/MutabilityTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/MutabilityTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/UtilHappy.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/UtilHappy.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/WasmAddressTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/WasmAddressTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/WasmModuleTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/WasmModuleTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/WasmStackTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/WasmStackTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/example/SimpleTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/example/SimpleTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/DropTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/DropTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/GetLocalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/GetLocalTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/I32ConstTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/I32ConstTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/I64ConstTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/I64ConstTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/F32_loadTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/F32_loadTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/F32_storeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/F32_storeTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/F64_loadTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/F64_loadTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/F64_storeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/F64_storeTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load16_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load16_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load16_u_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load16_u_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load8_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load8_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load8_u_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load8_u_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_loadTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_loadTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load_memoryDoesNotExistsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_load_memoryDoesNotExistsTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_store16Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_store16Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_store8Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_store8Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_storeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_storeTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_store_load_roundTripTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I32_store_load_roundTripTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load16_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load16_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load16_u_StoreAndLoad_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load16_u_StoreAndLoad_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load16_u_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load16_u_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load32_s_StoreAndLoad_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load32_s_StoreAndLoad_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load32_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load32_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load32_u_StoreAndLoad_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load32_u_StoreAndLoad_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load32_u_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load32_u_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load8_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load8_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load8_u_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_load8_u_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_store16Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_store16Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_store32Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_store32Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_store8Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_store8Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_storeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/Memory/I64_storeTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/SelectTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/SelectTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/SetLocalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/SetLocalTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_rotlTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_rotlTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_rotrTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_rotrTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_shlTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_shlTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_shr_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_shr_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_shr_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I32_shr_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_rotlTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_rotlTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_rotrTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_rotrTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_shlTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_shlTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_shr_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_shr_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_shr_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitshift/I64_shr_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitwise/F32/F32_absTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitwise/F32/F32_absTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitwise/F32/F32_copysignTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitwise/F32/F32_copysignTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitwise/F32/F32_negTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitwise/F32/F32_negTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitwise/F64/F64_absTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitwise/F64/F64_absTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitwise/F64/F64_copysignTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitwise/F64/F64_copysignTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/bitwise/F64/F64_negTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/bitwise/F64/F64_negTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_eqTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_eqTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_geTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_geTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_gtTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_gtTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_leTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_leTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_ltTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_ltTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_neTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F32/F32_neTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_eqTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_eqTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_geTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_geTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_gtTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_gtTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_leTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_leTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_ltTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_ltTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_neTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/F64/F64_neTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_eqTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_eqTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_eqzTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_eqzTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_ge_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_ge_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_ge_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_ge_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_gt_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_gt_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_gt_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_gt_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_le_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_le_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_le_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_le_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_lt_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_lt_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_lt_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_lt_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_neTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I32_neTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_eqTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_eqTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_eqzTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_eqzTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_ge_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_ge_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_ge_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_ge_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_gt_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_gt_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_gt_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_gt_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_le_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_le_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_le_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_le_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_lt_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_lt_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_lt_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_lt_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_neTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/comparison/I64_neTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/control/BlockTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/control/BlockTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/control/NopTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/control/NopTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/control/UnreachableTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/control/UnreachableTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/convert/I32_extend16_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/convert/I32_extend16_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/convert/I32_extend8_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/convert/I32_extend8_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend16_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend16_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend32_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend32_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend8_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend8_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend_I32_s_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend_I32_s_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend_I32_u_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/convert/I64_extend_I32_u_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/countingBits/I32_clz_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/countingBits/I32_clz_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/countingBits/I32_ctz_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/countingBits/I32_ctz_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/countingBits/I32_popcnt_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/countingBits/I32_popcnt_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/countingBits/I64_clz_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/countingBits/I64_clz_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/countingBits/I64_ctz_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/countingBits/I64_ctz_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/countingBits/I64_popcnt_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/countingBits/I64_popcnt_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/logic/I32_andTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/logic/I32_andTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/logic/I32_orTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/logic/I32_orTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/logic/I32_xorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/logic/I32_xorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/logic/I64_andTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/logic/I64_andTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/logic/I64_orTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/logic/I64_orTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/logic/I64_xorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/logic/I64_xorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_NearestTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_NearestTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_addTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_addTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_ceilTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_ceilTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_divTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_divTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_floorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_floorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_maxTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_maxTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_minTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_minTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_mulTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_mulTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_sqrtTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_sqrtTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_subTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_subTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_truncTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/F32_truncTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F32/Floating Point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F32/Floating Point.md -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_addTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_addTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_ceilTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_ceilTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_divTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_divTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_floorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_floorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_maxTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_maxTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_minTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_minTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_mulTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_mulTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_nearestTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_nearestTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_sqrtTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_sqrtTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_subTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_subTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_truncTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/F64/F64_truncTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I32_addTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I32_addTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I32_div_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I32_div_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I32_div_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I32_div_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I32_mulTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I32_mulTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I32_rem_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I32_rem_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I32_rem_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I32_rem_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I32_subTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I32_subTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I64_addTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I64_addTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I64_div_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I64_div_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I64_div_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I64_div_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I64_mulTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I64_mulTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I64_rem_sTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I64_rem_sTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I64_rem_uTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I64_rem_uTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/opcode/math/I64_subTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/opcode/math/I64_subTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/F32GroovyTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/F32GroovyTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/F64GroovyTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/F64GroovyTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/I32ConstructorByteTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/I32ConstructorByteTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/I32GetBytes_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/I32GetBytes_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/I32Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/I32Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/I64ConstructorByteTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/I64ConstructorByteTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/I64GetBytes_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/I64GetBytes_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/I64Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/I64Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/Int32GTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/Int32GTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/IntWasmTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/IntWasmTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/JavaType/ByteUnsignedTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/JavaType/ByteUnsignedTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/RelativeOperator_S64_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/RelativeOperator_S64_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/RelativeOperator_U64_Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/RelativeOperator_U64_Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/S32Test.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/S32Test.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/type/VarUInt1BooleanValueTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/type/VarUInt1BooleanValueTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/validation/FunctionTypeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/validation/FunctionTypeTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/happynewmoonwithreport/validation/ResizeableLimitsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/groovy/happynewmoonwithreport/validation/ResizeableLimitsTest.groovy -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/ElementTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/ElementTypeTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/FunctionBodyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/FunctionBodyTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/LocalEntryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/LocalEntryTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/MemoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/MemoryTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/ValueTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/ValueTypeTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/WasmVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/WasmVersionTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/example/CsvSourceExampleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/example/CsvSourceExampleTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/intergration/WasmFactorialLongTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/intergration/WasmFactorialLongTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/loadFromWasm/WasmAdd32Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/loadFromWasm/WasmAdd32Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/loadFromWasm/WasmBlockSingularTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/loadFromWasm/WasmBlockSingularTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/loadFromWasm/WasmI32EqualTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/loadFromWasm/WasmI32EqualTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/loadFromWasm/WasmI32SubTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/loadFromWasm/WasmI32SubTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/loadFromWasm/WasmI32Sub_2_Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/loadFromWasm/WasmI32Sub_2_Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/opcode/I32_eqTest5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/opcode/I32_eqTest5.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/opcode/Memory/I64LoadTestJUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/opcode/Memory/I64LoadTestJUnit.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/opcode/WasmInstanceStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/opcode/WasmInstanceStub.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/section/SectionCodeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/section/SectionCodeTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/section/SectionExportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/section/SectionExportTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/section/SectionFunctionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/section/SectionFunctionTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/section/SectionGlobalTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/section/SectionGlobalTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/section/SectionMemoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/section/SectionMemoryTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/section/SectionStartTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/section/SectionStartTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/section/SectionTableTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/section/SectionTableTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/section/SectionTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/section/SectionTypeTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/F32Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/F32Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/F64Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/F64Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/FloatTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/FloatTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/I32ConstructorBytesSizeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/I32ConstructorBytesSizeTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/Int32Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/Int32Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/Int64WasmTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/Int64WasmTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/Int8Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/Int8Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/NaNValueTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/NaNValueTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/NumberHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/NumberHelper.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/U64Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/U64Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/UInt64Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/UInt64Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/Uint16Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/Uint16Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/Uint32EqualTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/Uint32EqualTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/Uint32Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/Uint32Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/Uint8Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/Uint8Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarInt32LoopTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarInt32LoopTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarInt32Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarInt32Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarInt64LoopTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarInt64LoopTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarInt64Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarInt64Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarInt7LoopTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarInt7LoopTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarInt7Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarInt7Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarUInt1Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarUInt1Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarUInt32Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarUInt32Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarUInt7LoopTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarUInt7LoopTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/VarUInt7Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/VarUInt7Test.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/WasmStringTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/WasmStringTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/WasmVectorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/WasmVectorTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/type/isBoundByIntegerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/type/isBoundByIntegerTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/util/converter/StringToByteArrayConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/util/converter/StringToByteArrayConverter.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/util/converter/StringToByteArrayConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/util/converter/StringToByteArrayConverterTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/util/converter/StringToIntegerConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/util/converter/StringToIntegerConverter.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/util/converter/StringToIntegerConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/util/converter/StringToIntegerConverterTest.java -------------------------------------------------------------------------------- /src/test/java/happynewmoonwithreport/validation/WasmAdd32ValidationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/java/happynewmoonwithreport/validation/WasmAdd32ValidationTest.java -------------------------------------------------------------------------------- /src/test/resources/add32/add32 readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/add32/add32 readme.txt -------------------------------------------------------------------------------- /src/test/resources/add32/add32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/add32/add32.wasm -------------------------------------------------------------------------------- /src/test/resources/add32/add32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/add32/add32.wast -------------------------------------------------------------------------------- /src/test/resources/factorialLong/factorialLong readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/factorialLong/factorialLong readme.txt -------------------------------------------------------------------------------- /src/test/resources/factorialLong/factorialLong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/factorialLong/factorialLong.c -------------------------------------------------------------------------------- /src/test/resources/factorialLong/factorialLong.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/factorialLong/factorialLong.wasm -------------------------------------------------------------------------------- /src/test/resources/factorialLong/factorialLong.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/factorialLong/factorialLong.wast -------------------------------------------------------------------------------- /src/test/resources/i32Equal/i32Equal.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/i32Equal/i32Equal.wasm -------------------------------------------------------------------------------- /src/test/resources/i32Equal/i32Equal.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/i32Equal/i32Equal.wast -------------------------------------------------------------------------------- /src/test/resources/i32Sub/I32Sub.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/i32Sub/I32Sub.wasm -------------------------------------------------------------------------------- /src/test/resources/i32Sub/i32Sub.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/i32Sub/i32Sub.wast -------------------------------------------------------------------------------- /src/test/resources/wasm-project Block-Singular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project Block-Singular/README.md -------------------------------------------------------------------------------- /src/test/resources/wasm-project Block-Singular/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project Block-Singular/build.ts -------------------------------------------------------------------------------- /src/test/resources/wasm-project Block-Singular/out/main.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project Block-Singular/out/main.wasm -------------------------------------------------------------------------------- /src/test/resources/wasm-project Block-Singular/out/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project Block-Singular/out/readme.md -------------------------------------------------------------------------------- /src/test/resources/wasm-project Block-Singular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project Block-Singular/package.json -------------------------------------------------------------------------------- /src/test/resources/wasm-project Block-Singular/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project Block-Singular/src/main.html -------------------------------------------------------------------------------- /src/test/resources/wasm-project Block-Singular/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project Block-Singular/src/main.js -------------------------------------------------------------------------------- /src/test/resources/wasm-project Block-Singular/src/main.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project Block-Singular/src/main.wat -------------------------------------------------------------------------------- /src/test/resources/wasm-project-i32Sub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project-i32Sub/README.md -------------------------------------------------------------------------------- /src/test/resources/wasm-project-i32Sub/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project-i32Sub/build.ts -------------------------------------------------------------------------------- /src/test/resources/wasm-project-i32Sub/out/main.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project-i32Sub/out/main.wasm -------------------------------------------------------------------------------- /src/test/resources/wasm-project-i32Sub/out/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project-i32Sub/out/readme.txt -------------------------------------------------------------------------------- /src/test/resources/wasm-project-i32Sub/src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project-i32Sub/src/main.html -------------------------------------------------------------------------------- /src/test/resources/wasm-project-i32Sub/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project-i32Sub/src/main.js -------------------------------------------------------------------------------- /src/test/resources/wasm-project-i32Sub/src/main.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjd/HappyNewMoonWithReport/HEAD/src/test/resources/wasm-project-i32Sub/src/main.wat --------------------------------------------------------------------------------