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

Side by Side Diff: lib/runtime/dart/_foreign_helper.js

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: 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
« no previous file with comments | « no previous file | lib/runtime/dart/_interceptors.js » ('j') | lib/runtime/dart_runtime.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var _foreign_helper = dart.defineLibrary(_foreign_helper, {}); 1 dart.defineLibrary('_foreign_helper');
2 var core = dart.import(core); 2 dart.import('core');
3 (function(exports, core) { 3 (function(exports, core) {
4 'use strict'; 4 'use strict';
5 function JS(typeDescription, codeTemplate, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) { 5 function JS(typeDescription, codeTemplate, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
6 if (arg0 === void 0) 6 if (arg0 === void 0)
7 arg0 = null; 7 arg0 = null;
8 if (arg1 === void 0) 8 if (arg1 === void 0)
9 arg1 = null; 9 arg1 = null;
10 if (arg2 === void 0) 10 if (arg2 === void 0)
11 arg2 = null; 11 arg2 = null;
12 if (arg3 === void 0) 12 if (arg3 === void 0)
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 exports.JS_FUNCTION_TYPE_RETURN_TYPE_TAG = JS_FUNCTION_TYPE_RETURN_TYPE_TAG; 149 exports.JS_FUNCTION_TYPE_RETURN_TYPE_TAG = JS_FUNCTION_TYPE_RETURN_TYPE_TAG;
150 exports.JS_FUNCTION_TYPE_REQUIRED_PARAMETERS_TAG = JS_FUNCTION_TYPE_REQUIRED_P ARAMETERS_TAG; 150 exports.JS_FUNCTION_TYPE_REQUIRED_PARAMETERS_TAG = JS_FUNCTION_TYPE_REQUIRED_P ARAMETERS_TAG;
151 exports.JS_FUNCTION_TYPE_OPTIONAL_PARAMETERS_TAG = JS_FUNCTION_TYPE_OPTIONAL_P ARAMETERS_TAG; 151 exports.JS_FUNCTION_TYPE_OPTIONAL_PARAMETERS_TAG = JS_FUNCTION_TYPE_OPTIONAL_P ARAMETERS_TAG;
152 exports.JS_FUNCTION_TYPE_NAMED_PARAMETERS_TAG = JS_FUNCTION_TYPE_NAMED_PARAMET ERS_TAG; 152 exports.JS_FUNCTION_TYPE_NAMED_PARAMETERS_TAG = JS_FUNCTION_TYPE_NAMED_PARAMET ERS_TAG;
153 exports.JS_GET_NAME = JS_GET_NAME; 153 exports.JS_GET_NAME = JS_GET_NAME;
154 exports.JS_EMBEDDED_GLOBAL = JS_EMBEDDED_GLOBAL; 154 exports.JS_EMBEDDED_GLOBAL = JS_EMBEDDED_GLOBAL;
155 exports.JS_GET_FLAG = JS_GET_FLAG; 155 exports.JS_GET_FLAG = JS_GET_FLAG;
156 exports.JS_EFFECT = JS_EFFECT; 156 exports.JS_EFFECT = JS_EFFECT;
157 exports.JS_CONST = JS_CONST; 157 exports.JS_CONST = JS_CONST;
158 exports.JS_STRING_CONCAT = JS_STRING_CONCAT; 158 exports.JS_STRING_CONCAT = JS_STRING_CONCAT;
159 })(_foreign_helper, core); 159 })(_foreign_helper, core);
Jennifer Messerly 2015/06/05 16:22:27 fyi, some tools, like Closure, don't like a variab
vsm 2015/06/05 17:01:03 I'd been thinking about keeping this explicit at d
OLDNEW
« no previous file with comments | « no previous file | lib/runtime/dart/_interceptors.js » ('j') | lib/runtime/dart_runtime.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698