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

Side by Side Diff: pkg/polymer/lib/polymer.dart

Issue 108523003: Remove reflectedType hack from Polymer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/polymer/lib/src/loader.dart » ('j') | pkg/polymer/lib/src/loader.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 /** 5 /**
6 * Custom HTML tags, data binding, and templates for building 6 * Custom HTML tags, data binding, and templates for building
7 * structured, encapsulated, client-side web apps. 7 * structured, encapsulated, client-side web apps.
8 * 8 *
9 * Polymer.dart, the next evolution of Web UI, 9 * Polymer.dart, the next evolution of Web UI,
10 * is an in-progress Dart port of the 10 * is an in-progress Dart port of the
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 import 'package:custom_element/polyfill.dart' show customElementsReady; 52 import 'package:custom_element/polyfill.dart' show customElementsReady;
53 import 'package:logging/logging.dart' show Logger, Level; 53 import 'package:logging/logging.dart' show Logger, Level;
54 import 'package:observe/observe.dart'; 54 import 'package:observe/observe.dart';
55 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone; 55 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone;
56 import 'package:path/path.dart' as path; 56 import 'package:path/path.dart' as path;
57 import 'package:polymer_expressions/polymer_expressions.dart' 57 import 'package:polymer_expressions/polymer_expressions.dart'
58 show PolymerExpressions; 58 show PolymerExpressions;
59 import 'package:template_binding/template_binding.dart'; 59 import 'package:template_binding/template_binding.dart';
60 60
61 import 'deserialize.dart' as deserialize; 61 import 'deserialize.dart' as deserialize;
62 import 'src/reflected_type.dart';
63 62
64 export 'package:observe/observe.dart'; 63 export 'package:observe/observe.dart';
65 export 'package:observe/html.dart'; 64 export 'package:observe/html.dart';
66 65
67 part 'src/boot.dart'; 66 part 'src/boot.dart';
68 part 'src/declaration.dart'; 67 part 'src/declaration.dart';
69 part 'src/instance.dart'; 68 part 'src/instance.dart';
70 part 'src/job.dart'; 69 part 'src/job.dart';
71 part 'src/loader.dart'; 70 part 'src/loader.dart';
OLDNEW
« no previous file with comments | « no previous file | pkg/polymer/lib/src/loader.dart » ('j') | pkg/polymer/lib/src/loader.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698