File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
#define V8_MAJOR_VERSION 12
12
12
#define V8_MINOR_VERSION 9
13
13
#define V8_BUILD_NUMBER 202
14
- #define V8_PATCH_LEVEL 18
14
+ #define V8_PATCH_LEVEL 19
15
15
16
16
// Use 1 for candidates and 0 otherwise.
17
17
// (Boolean macro values are not supported by all preprocessors.)
Original file line number Diff line number Diff line change @@ -2082,8 +2082,8 @@ Handle<WasmTagObject> WasmTagObject::New(
2082
2082
}
2083
2083
2084
2084
bool WasmTagObject::MatchesSignature (uint32_t expected_canonical_type_index) {
2085
- return wasm::GetWasmEngine ()-> type_canonicalizer ()-> IsCanonicalSubtype (
2086
- this -> canonical_type_index (), expected_canonical_type_index) ;
2085
+ return static_cast < uint32_t >( this -> canonical_type_index ()) ==
2086
+ expected_canonical_type_index;
2087
2087
}
2088
2088
2089
2089
const wasm::FunctionSig* WasmCapiFunction::GetSignature (Zone* zone) const {
You can’t perform that action at this time.
0 commit comments