blob: 7c835d404a848700b174338aa89b8151e4c0f6a7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.core.tests.compiler.regression;
import org.eclipse.wst.jsdt.internal.compiler.ast.CompilationUnitDeclaration;
public class BasicErrorTests extends AbstractRegressionTest {
public BasicErrorTests(String name) {
super(name);
}
public void test001() {
CompilationUnitDeclaration declaration = this.runParseTest(
"function foo(){\n" +
" var c;\n" +
" var d;\n" +
" c.\n" +
"}\n",
"X.js",
"function foo(){\n" +
" var c;\n" +
" var d;\n" +
" c.\n" +
"\n"
);
}
public void test002() {
CompilationUnitDeclaration declaration = this.runParseTest(
"package p;\n" +
"/**\n" +
" * @category test\n" +
" */\n" +
"public class Y {\n" +
"}\n",
"X.js",
"function foo(){\n" +
" var c;\n" +
" var d;\n" +
" c.\n" +
"\n"
);
}
}