Project

General

Profile

Revision 9

Added by Willibald K. over 8 years ago

remove support for Qualitative Action Systems, rename UlyssesType to Type

View differences:

ParameterIdentifier.java
30 30
import org.antlr.runtime.Token;
31 31
import org.momut.ooas.ast.IAstVisitor;
32 32
import org.momut.ooas.ast.IScope;
33
import org.momut.ooas.ast.types.UlyssesType;
33
import org.momut.ooas.ast.types.Type;
34 34

  
35 35
public final class ParameterIdentifier extends LocalVariableIdentifier
36 36
{
37 37
	public ParameterIdentifier(Token aToken,
38
			UlyssesType aType,
38
			Type aType,
39 39
			IScope aDefiningScope)
40 40
	{
41 41
		super(aToken, aType, aDefiningScope);
42 42
		m_identifierKind = IdentifierKind.ParameterIdentifier;
43 43
	}
44 44

  
45
	public ParameterIdentifier(String name, UlyssesType aType, IScope aDefiningScope)
45
	public ParameterIdentifier(String name, Type aType, IScope aDefiningScope)
46 46
	{
47 47
		super (name, aType, IdentifierKind.ParameterIdentifier, aDefiningScope);
48 48
	}

Also available in: Unified diff