Variable constructor

Variable(
  1. String name, [
  2. List<String>? lines
])

Implementation

Variable(String name, [List<String>? lines])
    : super(name, ParserItemType.aVariable, lines);