visitIntegerLiteral method
Implementation
@override
Future<Element> visitIntegerLiteral(IntegerLiteral node) async {
return LiteralElement(
constant: true,
constantValue: int.parse(_removeSeparators(node.literal.lexeme)),
type: const IntegerType(),
);
}