Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: pkg/front_end/lib/src/fasta/builder/modifier_builder.dart

Issue 2938793002: Implement metadata on classes and additional semantic checks. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library fasta.modifier_builder; 5 library fasta.modifier_builder;
6 6
7 import '../modifier.dart' 7 import '../modifier.dart'
8 show 8 show
9 abstractMask, 9 abstractMask,
10 constMask, 10 constMask,
(...skipping 18 matching lines...) Expand all
29 29
30 bool get isExternal => (modifiers & externalMask) != 0; 30 bool get isExternal => (modifiers & externalMask) != 0;
31 31
32 bool get isFinal => (modifiers & finalMask) != 0; 32 bool get isFinal => (modifiers & finalMask) != 0;
33 33
34 bool get isStatic => (modifiers & staticMask) != 0; 34 bool get isStatic => (modifiers & staticMask) != 0;
35 35
36 bool get isNamedMixinApplication { 36 bool get isNamedMixinApplication {
37 return (modifiers & namedMixinApplicationMask) != 0; 37 return (modifiers & namedMixinApplicationMask) != 0;
38 } 38 }
39
40 bool get isClassMember => false;
41
42 String get name;
43
44 bool get isNative => false;
39 } 45 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/fasta/analyzer_diet_listener.dart ('k') | pkg/front_end/lib/src/fasta/kernel/body_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698