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:

ValueReferenceIdentifier.java
29 29

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

  
34 34
///////////////////////////////////////////////
35 35
///  Variable Identifiers
......
38 38
public abstract class ValueReferenceIdentifier extends Identifier
39 39
{
40 40
	public ValueReferenceIdentifier(Token aToken,
41
			UlyssesType aType,
41
			Type aType,
42 42
			IdentifierKind aKind,
43 43
			IScope aDefiningScope)
44 44
	{
......
50 50
		super(toCopy);
51 51
	}
52 52

  
53
	public ValueReferenceIdentifier(String name, UlyssesType aType, IdentifierKind aKind, IScope aDefiningScope)
53
	public ValueReferenceIdentifier(String name, Type aType, IdentifierKind aKind, IScope aDefiningScope)
54 54
	{
55 55
		super(name, aType, aKind, aDefiningScope);
56 56
	}

Also available in: Unified diff