endIrLabel static method

dynamic endIrLabel()

Ends a labeled block by decreasing indentation.

Should be called after completing instructions within a labeled block to restore the previous indentation level.

Implementation

static endIrLabel() {
  irIndent--;
}