| Index: dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| index 1af7f49f8ff52a962415b0d216959bbb39b2c7a9..50aabfc6d416aa4067ced372769abc678dc9303c 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| @@ -65,11 +65,6 @@ class SsaCodeGeneratorTask extends CompilerTask {
|
| return attachPosition(new js.Fun(parameters, body), element);
|
| }
|
|
|
| - CodeBuffer prettyPrint(js.Node node) {
|
| - var code = js.prettyPrint(node, compiler, allowVariableMinification: true);
|
| - return code;
|
| - }
|
| -
|
| js.Expression generateCode(CodegenWorkItem work, HGraph graph) {
|
| if (work.element.isField()) {
|
| return generateLazyInitializer(work, graph);
|
| @@ -408,10 +403,6 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| return !identical(expressionType(info), TYPE_STATEMENT);
|
| }
|
|
|
| - bool isJSDeclaration(HExpressionInformation info) {
|
| - return identical(expressionType(info), TYPE_DECLARATION);
|
| - }
|
| -
|
| bool isJSCondition(HExpressionInformation info) {
|
| HSubExpressionBlockInformation graph = info;
|
| SubExpression limits = graph.subExpression;
|
|
|