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

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

Issue 1195523002: Handle dynamic as bottom inside of function type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Fix typo in comment 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 | « lib/runtime/dart/mirrors.js ('k') | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 dart_library.library('dart_runtime/dart', null, /* Imports */[ 5 dart_library.library('dart_runtime/dart', null, /* Imports */[
6 'dart_runtime/_classes', 6 'dart_runtime/_classes',
7 'dart_runtime/_errors', 7 'dart_runtime/_errors',
8 'dart_runtime/_operations', 8 'dart_runtime/_operations',
9 'dart_runtime/_rtti', 9 'dart_runtime/_rtti',
10 'dart_runtime/_types', 10 'dart_runtime/_types',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'throw_', 83 'throw_',
84 'toString', 84 'toString',
85 ]) 85 ])
86 // Renames 86 // Renames
87 exports.as = _export(operations.cast); 87 exports.as = _export(operations.cast);
88 exports.is = _export(operations.instanceOf); 88 exports.is = _export(operations.instanceOf);
89 89
90 // From types 90 // From types
91 exportFrom(types, [ 91 exportFrom(types, [
92 'bottom', 92 'bottom',
93 'definiteFunctionType',
93 'dynamic', 94 'dynamic',
94 'functionType', 95 'functionType',
95 'typedef', 96 'typedef',
96 'typeName', 97 'typeName',
97 'void', 98 'void',
98 ]); 99 ]);
99 100
100 // From rtti 101 // From rtti
101 exportFrom(rtti, [ 102 exportFrom(rtti, [
102 'fn', 103 'fn',
103 'realRuntimeType', 104 'realRuntimeType',
104 'runtimeType', 105 'runtimeType',
105 ]); 106 ]);
106 107
107 }); 108 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/mirrors.js ('k') | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698