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

Side by Side Diff: pkg/compiler/lib/src/common/codegen.dart

Issue 1342213003: Add optional message to assert in Dart2js - continued (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Add --assert-message flag Created 5 years, 3 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 | « pkg/compiler/lib/src/common/backend_api.dart ('k') | pkg/compiler/lib/src/common/registry.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) 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 library dart2js.common.codegen; 5 library dart2js.common.codegen;
6 6
7 import '../compiler.dart' show 7 import '../compiler.dart' show
8 Compiler; 8 Compiler;
9 import '../constants/values.dart' show 9 import '../constants/values.dart' show
10 ConstantValue; 10 ConstantValue;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 Element get currentElement => treeElements.analyzedElement; 51 Element get currentElement => treeElements.analyzedElement;
52 52
53 // TODO(johnniwinther): Remove this getter when [Registry] creates a 53 // TODO(johnniwinther): Remove this getter when [Registry] creates a
54 // dependency node. 54 // dependency node.
55 Setlet<Element> get otherDependencies => treeElements.otherDependencies; 55 Setlet<Element> get otherDependencies => treeElements.otherDependencies;
56 56
57 CodegenEnqueuer get world => compiler.enqueuer.codegen; 57 CodegenEnqueuer get world => compiler.enqueuer.codegen;
58 JavaScriptBackend get backend => compiler.backend; 58 JavaScriptBackend get backend => compiler.backend;
59 59
60 void registerAssert(bool hasMessage) {
61 // Codegen does not register asserts. They have been lowered to calls.
62 assert(false);
63 }
64
60 void registerDependency(Element element) { 65 void registerDependency(Element element) {
61 treeElements.registerDependency(element); 66 treeElements.registerDependency(element);
62 } 67 }
63 68
64 void registerInlining(Element inlinedElement, Element context) { 69 void registerInlining(Element inlinedElement, Element context) {
65 if (compiler.dumpInfo) { 70 if (compiler.dumpInfo) {
66 compiler.dumpInfoTask.registerInlined(inlinedElement, context); 71 compiler.dumpInfoTask.registerInlined(inlinedElement, context);
67 } 72 }
68 } 73 }
69 74
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 203
199 TreeElements get resolutionTree => element.resolvedAst.elements; 204 TreeElements get resolutionTree => element.resolvedAst.elements;
200 205
201 WorldImpact run(Compiler compiler, CodegenEnqueuer world) { 206 WorldImpact run(Compiler compiler, CodegenEnqueuer world) {
202 if (world.isProcessed(element)) return const WorldImpact(); 207 if (world.isProcessed(element)) return const WorldImpact();
203 208
204 registry = new CodegenRegistry(compiler, resolutionTree); 209 registry = new CodegenRegistry(compiler, resolutionTree);
205 return compiler.codegen(this, world); 210 return compiler.codegen(this, world);
206 } 211 }
207 } 212 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/common/backend_api.dart ('k') | pkg/compiler/lib/src/common/registry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698