| Index: dart/tests/lib/mirrors/static_test.dart
|
| diff --git a/dart/tests/lib/mirrors/static_test.dart b/dart/tests/lib/mirrors/static_test.dart
|
| index 41e62557e02b72b4db1e871443ec3df5abac2122..b238e24fc43160d268404b94a16b18f371c7b22d 100644
|
| --- a/dart/tests/lib/mirrors/static_test.dart
|
| +++ b/dart/tests/lib/mirrors/static_test.dart
|
| @@ -24,8 +24,6 @@ void main() {
|
| reflectClass(Foo).setters[new Symbol('aux=')]);
|
| expect('Method(s(foo) in s(Foo), static)',
|
| reflectClass(Foo).members[new Symbol('foo')]);
|
| -
|
| - // TODO(ahe): Support static variables.
|
| - // expect('Variable(s(bar) in s(Foo), static)',
|
| - // reflectClass(Foo).members[new Symbol('bar')]);
|
| + expect('Variable(s(bar) in s(Foo), static)',
|
| + reflectClass(Foo).members[new Symbol('bar')]);
|
| }
|
|
|