Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: pkg/dev_compiler/test/codegen/lib/mirrors/private_field_helper.dart

Issue 2535273002: Better mirrors support for mixins and private fields (Closed)
Patch Set: Address comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
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.
4
5 library test.mixin;
6
7 import 'dart:mirrors';
8
9 import 'package:expect/expect.dart';
10
11 class Bar {
12 String _field = "hello";
13 String get field => _field;
14 }
15
16 var privateSymbol2 = #_field;
17 var publicSymbol2 = #field;
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698