| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // Test that metadata refer to the annotated declaration. | 5 library TwoScriptsTestSecond; |
| 6 import 'dart:html'; |
| 6 | 7 |
| 7 @Foo() | 8 aGlobalFunction() { |
| 8 class Foo { | 9 window.postMessage('second_global', '*'); |
| 9 const Foo(); | |
| 10 } | 10 } |
| 11 | 11 |
| 12 main() { | 12 main() { |
| 13 Foo f = const Foo(); | 13 window.postMessage('second_local', '*'); |
| 14 aGlobalFunction(); |
| 14 } | 15 } |
| OLD | NEW |