Skip to content

Commit c853721

Browse files
authored
implement TryFrom for V10 (#4190)
# Description of Changes This particular line lost during rebasing of prev PRs. Now causing 2.0 branch to fail - #4115 # API and ABI breaking changes NA # Expected complexity level and risk 0
1 parent 4497ea1 commit c853721

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

crates/schema/src/def.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,7 @@ impl TryFrom<RawModuleDef> for ModuleDef {
390390
match raw {
391391
RawModuleDef::V8BackCompat(v8_mod) => Self::try_from(v8_mod),
392392
RawModuleDef::V9(v9_mod) => Self::try_from(v9_mod),
393+
RawModuleDef::V10(v10_mod) => Self::try_from(v10_mod),
393394
_ => unimplemented!(),
394395
}
395396
}

0 commit comments

Comments
 (0)