visitDoubleLiteral method
Implementation
@override
Future<Element> visitDoubleLiteral(DoubleLiteral node) async {
return LiteralElement(
constant: true,
constantValue: double.parse(_removeSeparators(node.literal.lexeme)),
type: const DoubleType(),
);
}