Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 int test3a() { | 5 class Logger { |
|
Anders Johnsen
2012/08/28 13:53:10
The name 'Logger' seams very generic. Can we pick
Mads Ager (google)
2012/08/28 13:57:29
Sure. We can call it PrintImplementation? We can d
Anders Johnsen
2012/08/28 14:01:09
PrintImplementation sounds good, I'm afraid we'll
Ivan Posva
2012/08/29 06:21:16
The conflicts with other user code would only happ
Anders Johnsen
2012/08/29 06:54:07
True, but I actually have code where i have my own
| |
| 6 return 3; | 6 external static void print(Object obj); |
| 7 } | 7 } |
| OLD | NEW |