OpentoolfileParser constructor

OpentoolfileParser(
  1. String source
)

Constructor: parse and interpret the given Opentoolfile source.

Implementation

OpentoolfileParser(String source) {
  _instructions = _parse(source);
  _interpret();
}