Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zyrouge committed Oct 15, 2023
1 parent 1c113a7 commit 41e08a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/beize_vm/lib/vm/result.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ class BeizeInterpreterResult {

extension BeizeValueInterpreterResultUtils on BeizeInterpreterResult {
BeizeValue unwrapUnsafe() {
if (isFailure) throw BeizeInterpreterBridgedException(error);
if (isFailure) {
throw BeizeInterpreterBridgedException(error);
}
return value;
}
}
Expand Down

0 comments on commit 41e08a7

Please sign in to comment.