addJumpPoint method

void addJumpPoint(
  1. String jumpKeyword
)

Implementation

void addJumpPoint(String jumpKeyword) {
  jumpPoints.add(JumpPoint(lineNum: code.length, keyword: jumpKeyword));
}