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

Side by Side Diff: frog/type.dart

Issue 9487012: Avoid mangling the name of native methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 years, 9 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 | Annotate | Revision Log
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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 members[methodName] = method; 905 members[methodName] = method;
906 } 906 }
907 907
908 addField(VariableDefinition definition) { 908 addField(VariableDefinition definition) {
909 for (int i=0; i < definition.names.length; i++) { 909 for (int i=0; i < definition.names.length; i++) {
910 var name = definition.names[i].name; 910 var name = definition.names[i].name;
911 if (members.containsKey(name)) { 911 if (members.containsKey(name)) {
912 world.error('duplicate field definition of "$name"', 912 world.error('duplicate field definition of "$name"',
913 definition.span); 913 definition.span);
914 return; 914 return;

error: old chunk mismatch

OLDNEW

Powered by Google App Engine
This is Rietveld 408576698