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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/js_emitter/declarations.dart

Issue 61683007: Reapply "Retain types of toplevel and instance variables for reflection." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix: use '-' instead of ':' as a separator in the field descriptor. Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
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 4
5 part of dart2js.js_emitter; 5 part of dart2js.js_emitter;
6 6
7 /// Enables debugging of fast/slow objects using V8-specific primitives. 7 /// Enables debugging of fast/slow objects using V8-specific primitives.
8 const DEBUG_FAST_OBJECTS = false; 8 const DEBUG_FAST_OBJECTS = false;
9 9
10 /** 10 /**
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 // characters. 75 // characters.
76 const FIELD_CODE_CHARACTERS = r"<=>?@{|}~%&'()*"; 76 const FIELD_CODE_CHARACTERS = r"<=>?@{|}~%&'()*";
77 const NO_FIELD_CODE = 0; 77 const NO_FIELD_CODE = 0;
78 const FIRST_FIELD_CODE = 1; 78 const FIRST_FIELD_CODE = 1;
79 const RANGE1_FIRST = 0x3c; // <=>?@ encodes 1..5 79 const RANGE1_FIRST = 0x3c; // <=>?@ encodes 1..5
80 const RANGE1_LAST = 0x40; 80 const RANGE1_LAST = 0x40;
81 const RANGE2_FIRST = 0x7b; // {|}~ encodes 6..9 81 const RANGE2_FIRST = 0x7b; // {|}~ encodes 6..9
82 const RANGE2_LAST = 0x7e; 82 const RANGE2_LAST = 0x7e;
83 const RANGE3_FIRST = 0x25; // %&'()*+ encodes 10..16 83 const RANGE3_FIRST = 0x25; // %&'()*+ encodes 10..16
84 const RANGE3_LAST = 0x2b; 84 const RANGE3_LAST = 0x2b;
85 const REFLECTION_MARKER = 0x2d;
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.dart ('k') | sdk/lib/_internal/lib/js_mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698