blob: ab3516e9bce955051e769b2b407c610025f4f005 [file] [log] [blame]
// Copyright (c) 2011, 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.
library dart2js.parser.classes;
import '../tokens/token.dart' show
Token;
import 'listener.dart' show
Listener;
import '../options.dart' show
ParserOptions;
import 'partial_parser.dart' show
PartialParser;
class ClassElementParser extends PartialParser {
ClassElementParser(Listener listener, ParserOptions options)
: super(listener, options);
Token parseClassBody(Token token) => fullParseClassBody(token);
}