$getProperty method
Get a property by identifier
on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'allMatches':
return $Function(__allMatches.call);
case 'matchAsPrefix':
return $Function(__matchAsPrefix.call);
default:
return _superclass.$getProperty(runtime, identifier);
}
}