| OLD | NEW |
| 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.full_emitter; | 5 part of dart2js.js_emitter.full_emitter; |
| 6 | 6 |
| 7 // TODO(ahe): Share these with js_helper.dart. | 7 // TODO(ahe): Share these with js_helper.dart. |
| 8 const FUNCTION_INDEX = 0; | 8 const FUNCTION_INDEX = 0; |
| 9 const NAME_INDEX = 1; | 9 const NAME_INDEX = 1; |
| 10 const CALL_NAME_INDEX = 2; | 10 const CALL_NAME_INDEX = 2; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 'needsMixinSupport': emitter.needsMixinSupport, | 127 'needsMixinSupport': emitter.needsMixinSupport, |
| 128 'needsNativeSupport': program.needsNativeSupport, | 128 'needsNativeSupport': program.needsNativeSupport, |
| 129 'enabledJsInterop': backend.jsInteropAnalysis.enabledJsInterop, | 129 'enabledJsInterop': backend.jsInteropAnalysis.enabledJsInterop, |
| 130 'jsInteropBoostrap': backend.jsInteropAnalysis.buildJsInteropBootstrap(), | 130 'jsInteropBoostrap': backend.jsInteropAnalysis.buildJsInteropBootstrap(), |
| 131 'isInterceptorClass': namer.operatorIs(backend.helpers.jsInterceptorClass), | 131 'isInterceptorClass': namer.operatorIs(backend.helpers.jsInterceptorClass), |
| 132 'isObject': namer.operatorIs(compiler.commonElements.objectClass), | 132 'isObject': namer.operatorIs(compiler.commonElements.objectClass), |
| 133 'specProperty': js.string(namer.nativeSpecProperty), | 133 'specProperty': js.string(namer.nativeSpecProperty), |
| 134 'trivialNsmHandlers': emitter.buildTrivialNsmHandlers(), | 134 'trivialNsmHandlers': emitter.buildTrivialNsmHandlers(), |
| 135 'hasRetainedMetadata': backend.hasRetainedMetadata, | 135 'hasRetainedMetadata': backend.hasRetainedMetadata, |
| 136 'types': typesAccess, | 136 'types': typesAccess, |
| 137 'objectClassName': js | 137 'objectClassName': js.quoteName( |
| 138 .quoteName(namer.runtimeTypeName(compiler.commonElements.objectClass)), | 138 namer.runtimeTypeName(compiler.commonElements.objectClass as Entity)), |
| 139 'needsStructuredMemberInfo': emitter.needsStructuredMemberInfo, | 139 'needsStructuredMemberInfo': emitter.needsStructuredMemberInfo, |
| 140 'usesMangledNames': compiler.commonElements.mirrorsLibrary != null || | 140 'usesMangledNames': compiler.commonElements.mirrorsLibrary != null || |
| 141 backend.hasFunctionApplySupport, | 141 backend.hasFunctionApplySupport, |
| 142 'tearOffCode': buildTearOffCode(backend), | 142 'tearOffCode': buildTearOffCode(backend), |
| 143 'nativeInfoHandler': nativeInfoHandler, | 143 'nativeInfoHandler': nativeInfoHandler, |
| 144 'operatorIsPrefix': js.string(namer.operatorIsPrefix), | 144 'operatorIsPrefix': js.string(namer.operatorIsPrefix), |
| 145 'deferredActionString': js.string(namer.deferredAction) | 145 'deferredActionString': js.string(namer.deferredAction) |
| 146 }; | 146 }; |
| 147 String skeleton = ''' | 147 String skeleton = ''' |
| 148 function $setupProgramName(programData, typesOffset) { | 148 function $setupProgramName(programData, typesOffset) { |
| (...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 (function() { | 855 (function() { |
| 856 var result = $array[$index]; | 856 var result = $array[$index]; |
| 857 if ($check) { | 857 if ($check) { |
| 858 throw new Error( | 858 throw new Error( |
| 859 name + ": expected value of type \'$type\' at index " + ($index) + | 859 name + ": expected value of type \'$type\' at index " + ($index) + |
| 860 " but got " + (typeof result)); | 860 " but got " + (typeof result)); |
| 861 } | 861 } |
| 862 return result; | 862 return result; |
| 863 })()'''; | 863 })()'''; |
| 864 } | 864 } |
| OLD | NEW |