Frame constructor

Frame(
  1. {int? index,
  2. FuncRef? function,
  3. CodeRef? code,
  4. SourceLocation? location,
  5. List<BoundVariable>? vars,
  6. String? kind}
)

Implementation

Frame({
  this.index,
  this.function,
  this.code,
  this.location,
  this.vars,
  this.kind,
});