visitIdentifier method
Implementation
@override
String visitIdentifier(Identifier stmt) {
if (context.containsKey(stmt.name)) {
bindableExpressions.add(stmt.name);
}
return '';
}
@override
String visitIdentifier(Identifier stmt) {
if (context.containsKey(stmt.name)) {
bindableExpressions.add(stmt.name);
}
return '';
}