blob: b65b1eff0263eacb3391622ac15f7fce45ea2a89 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 xored software, Inc.
*
* 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:
* xored software, Inc. - initial API and Implementation (Vladimir Belov)
*******************************************************************************/
package org.eclipse.dltk.javascript.internal.formatter.tests;
import java.util.Map;
import org.eclipse.dltk.compiler.util.Util;
import org.eclipse.dltk.javascript.formatter.JavaScriptFormatter;
import org.eclipse.dltk.javascript.formatter.JavaScriptFormatterConstants;
public class TestJavaScriptFormatter extends JavaScriptFormatter {
public TestJavaScriptFormatter() {
super(Util.LINE_SEPARATOR, JavaScriptFormatterConstants.getDefaults());
}
public TestJavaScriptFormatter(String lineDelimiter,
Map<String, Object> preferences) {
super(lineDelimiter, preferences);
}
protected boolean isValidation() {
return false;
}
}