RedefinedProductionError
class
Error raised when a production is accidentally redefined.
class RedefinedProductionError implements Error {
final String name;
RedefinedProductionError(this.name);
String toString() => 'Redefined production: $name';
}
Implements
Error
Constructors
new RedefinedProductionError(String name) #
RedefinedProductionError(this.name);
Methods
String toString() #
Returns a string representation of this object.
String toString() => 'Redefined production: $name';