blob: 23db354256afc1a7544523a8c34a1b09e1c9a121 [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
*
*******************************************************************************/
package org.eclipse.dltk.ruby.core;
import org.eclipse.dltk.ast.Modifiers;
public class RubyConstants {
protected RubyConstants() {
}
public final static String RUBY_PARTITIONING = "__ruby_partitioning"; //$NON-NLS-1$
public static final int RubyAttributeModifier = 2 << (Modifiers.USER_MODIFIER + 1);
public static final int RubyAliasModifier = 2 << (Modifiers.USER_MODIFIER + 2);
public static final String REQUIRE = "require"; //$NON-NLS-1$
}