parse method

void parse(
  1. String path
)

Implementation

void parse(String path) {
  final buf = StringBuffer();
  buf.write(File(path).readAsStringSync());
  parseBuffer(buf);
}