| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 library initialize.test.build.common; | 4 library angular2.test.transform; |
| 5 | 5 |
| 6 // TODO(kegluneq): Remove this and use the actual Directive def'n. | 6 // TODO(kegluneq): Remove this and use the actual Directive def'n. |
| 7 // Simple mock of Directive. | 7 // Simple mock of Directive. |
| 8 class Directive { | 8 class Directive { |
| 9 final context; | 9 final context; |
| 10 const Directive({this.context}); | 10 const Directive({this.context}); |
| 11 } | 11 } |
| OLD | NEW |