From 225c9cdf5425a2154a117d97c43d875c81310dbc Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Mon, 17 Mar 2014 04:31:47 +0400 Subject: [PATCH] JS parser: updated imports --- .../src/com/google/gwt/dev/js/JsParser.java | 61 ++----------------- 1 file changed, 4 insertions(+), 57 deletions(-) diff --git a/js/js.parser/src/com/google/gwt/dev/js/JsParser.java b/js/js.parser/src/com/google/gwt/dev/js/JsParser.java index 4e3bb6b02a4..dfe4694f844 100644 --- a/js/js.parser/src/com/google/gwt/dev/js/JsParser.java +++ b/js/js.parser/src/com/google/gwt/dev/js/JsParser.java @@ -15,63 +15,10 @@ */ package com.google.gwt.dev.js; -import com.google.gwt.dev.jjs.Correlation.Literal; -import com.google.gwt.dev.jjs.SourceInfo; -import com.google.gwt.dev.jjs.SourceOrigin; -import com.google.gwt.dev.js.ast.JsArrayAccess; -import com.google.gwt.dev.js.ast.JsArrayLiteral; -import com.google.gwt.dev.js.ast.JsBinaryOperation; -import com.google.gwt.dev.js.ast.JsBinaryOperator; -import com.google.gwt.dev.js.ast.JsBlock; -import com.google.gwt.dev.js.ast.JsBooleanLiteral; -import com.google.gwt.dev.js.ast.JsBreak; -import com.google.gwt.dev.js.ast.JsCase; -import com.google.gwt.dev.js.ast.JsCatch; -import com.google.gwt.dev.js.ast.JsConditional; -import com.google.gwt.dev.js.ast.JsContinue; -import com.google.gwt.dev.js.ast.JsDebugger; -import com.google.gwt.dev.js.ast.JsDefault; -import com.google.gwt.dev.js.ast.JsDoWhile; -import com.google.gwt.dev.js.ast.JsEmpty; -import com.google.gwt.dev.js.ast.JsExprStmt; -import com.google.gwt.dev.js.ast.JsExpression; -import com.google.gwt.dev.js.ast.JsFor; -import com.google.gwt.dev.js.ast.JsForIn; -import com.google.gwt.dev.js.ast.JsFunction; -import com.google.gwt.dev.js.ast.JsIf; -import com.google.gwt.dev.js.ast.JsInvocation; -import com.google.gwt.dev.js.ast.JsLabel; -import com.google.gwt.dev.js.ast.JsName; -import com.google.gwt.dev.js.ast.JsNameRef; -import com.google.gwt.dev.js.ast.JsNew; -import com.google.gwt.dev.js.ast.JsNode; -import com.google.gwt.dev.js.ast.JsNullLiteral; -import com.google.gwt.dev.js.ast.JsNumberLiteral; -import com.google.gwt.dev.js.ast.JsObjectLiteral; -import com.google.gwt.dev.js.ast.JsParameter; -import com.google.gwt.dev.js.ast.JsPostfixOperation; -import com.google.gwt.dev.js.ast.JsPrefixOperation; -import com.google.gwt.dev.js.ast.JsPropertyInitializer; -import com.google.gwt.dev.js.ast.JsRegExp; -import com.google.gwt.dev.js.ast.JsReturn; -import com.google.gwt.dev.js.ast.JsRootScope; -import com.google.gwt.dev.js.ast.JsScope; -import com.google.gwt.dev.js.ast.JsStatement; -import com.google.gwt.dev.js.ast.JsStringLiteral; -import com.google.gwt.dev.js.ast.JsSwitch; -import com.google.gwt.dev.js.ast.JsThisRef; -import com.google.gwt.dev.js.ast.JsThrow; -import com.google.gwt.dev.js.ast.JsTry; -import com.google.gwt.dev.js.ast.JsUnaryOperator; -import com.google.gwt.dev.js.ast.JsVars; -import com.google.gwt.dev.js.ast.JsWhile; -import com.google.gwt.dev.js.rhino.Context; -import com.google.gwt.dev.js.rhino.ErrorReporter; -import com.google.gwt.dev.js.rhino.EvaluatorException; -import com.google.gwt.dev.js.rhino.IRFactory; -import com.google.gwt.dev.js.rhino.Node; -import com.google.gwt.dev.js.rhino.Parser; -import com.google.gwt.dev.js.rhino.TokenStream; +import com.google.dart.compiler.backend.js.ast.*; +import com.google.dart.compiler.backend.js.ast.JsLiteral.JsBooleanLiteral; +import com.google.dart.compiler.common.SourceInfo; +import com.google.gwt.dev.js.rhino.*; import java.io.IOException; import java.io.Reader;