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

Side by Side Diff: lib/runtime/dartx.js

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Add missing file Created 5 years, 6 months 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
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 library html_input_c; 5 /* This library defines the namespace for Dart extension method symbols.
6 */
6 7
7 import 'html_input_e.dart'; 8 loader.library('dart/dartx', null, /* Imports */[
Jennifer Messerly 2015/06/12 17:32:25 not sure this is worth its own file.
Leaf 2015/06/12 19:52:14 I moved this to be a property on dart (dart.dartx)
9 ], /* Lazy Imports */[
10 ], function(exports) {
11 'use strict';
8 12
9 int y = 3 + w; 13 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698