getLocal method
Returns a variable that references the name
local.
Implementation
@override
o.Expression? getLocal(String name) {
if (name == EventHandlerVars.event.name) {
return EventHandlerVars.event;
}
return null;
}
Returns a variable that references the name
local.
@override
o.Expression? getLocal(String name) {
if (name == EventHandlerVars.event.name) {
return EventHandlerVars.event;
}
return null;
}