blob: 1c5e2b8c4afe97cb7dd79e12812605290b54270a [file]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:kernel/ast.dart' show Variable;
import '../base/lookup_result.dart';
import '../builder/builder.dart';
abstract class VariableBuilder implements Builder, LookupResult {
Variable get variable;
bool get isConst;
bool get isFinal;
bool get isLate;
bool get isAssignable;
bool get isPrimaryConstructorParameter;
}