Class BlockStatement

Block statement (e.g., { var x = 1; print(x); }).

class BlockStatement
  : Statement;

Constructors

NameDescription
this (statements, line, column) Creates a block statement.

Fields

NameTypeDescription
statements Statement[]The statements in this block
column ulongColumn number where this node starts in source
line ulongLine number where this node appears in source