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 #library('nativewrappers'); | 5 void print(Object object) { |
|
Ivan Posva
2012/08/30 00:32:13
This change makes no sense to me.
Why was #librar
Mads Ager (google)
2012/08/30 06:59:17
It wasn't. It is the diff tools playing with us. T
| |
| 6 | 6 PrintImplementation.print(object); |
| 7 class NativeFieldWrapperClass1 { | |
| 8 } | 7 } |
| OLD | NEW |