blob: f9e2e78c6d3c2012e7862395e69a2ef865dee054 [file] [log] [blame]
class VariableDeclaration {
String? _name;
String? get name => _name;
VariableDeclaration(
this._name, {
int flags = -1,
}) {}
int flags = 0;
}