Exception function

Expr Exception(
  1. Expr expr
)

Implementation

Expr Exception(Expr expr) {
  return ExprConstructor(
    className: 'Exception',
    isConst: false,
    positionalArguments: ic.IList([expr]),
  );
}