endCaseTag function

Parser endCaseTag()

Implementation

Parser endCaseTag() => (tagStart() & string('endcase').trim() & tagEnd())
    .map((values) {
      return Tag('endcase', []);
    })
    .labeled('endCaseTag');