Statement constructor
Statement(})
Implementation
Statement(
super.type, {
super.isAwait,
this.hasEndOfStmtMark = false,
super.isStatement = true,
super.isBlock,
super.source,
super.line = 0,
super.column = 0,
super.offset = 0,
super.length = 0,
}) {
if (isBlock) {
assert(!hasEndOfStmtMark);
}
}