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

Side by Side Diff: frog/type.dart

Issue 8952006: Fix factories in Frog to correspond to the new syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merged, and update test status Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « frog/tree.g.dart ('k') | tests/language/language.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
None
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 class Type extends Element { 5 class Type extends Element {
6 bool isTested = false; 6 bool isTested = false;
7 bool isChecked = false; 7 bool isChecked = false;
8 bool isWritten = false; 8 bool isWritten = false;
9 9
10 /** 10 /**
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 730
731 /** Represents a Dart type defined as source code. */ 731 /** Represents a Dart type defined as source code. */
732 class DefinedType extends Type { 732 class DefinedType extends Type {
733 // Not final so that we can fill this in for special types like List or num. 733 // Not final so that we can fill this in for special types like List or num.
734 Definition definition; 734 Definition definition;
735 final Library library; 735 final Library library;
736 final bool isClass; 736 final bool isClass;
737 737
738 // TODO(vsm): Restore the field once Issue 280 is fixed. 738 // TODO(vsm): Restore the field once Issue 280 is fixed.
739 // Type parent; 739 // Type parent;

error: old chunk mismatch

OLDNEW
« no previous file with comments | « frog/tree.g.dart ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698