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:

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

  
36 36

  
37 37
public class LocalVariableIdentifier extends ValueReferenceIdentifier
38 38
{
39 39
	public LocalVariableIdentifier(Token aToken,
40
			UlyssesType aType,
40
			Type aType,
41 41
			IScope aDefiningScope)
42 42
	{
43 43
		super (aToken, aType, IdentifierKind.LocalVariableIdentifier, aDefiningScope);
44 44
	}
45 45

  
46 46
	public LocalVariableIdentifier(String name,
47
			UlyssesType aType,
47
			Type aType,
48 48
			IScope aDefiningScope)
49 49
	{
50 50
		super (name, aType, IdentifierKind.LocalVariableIdentifier, aDefiningScope);
......
61 61
		return new LocalVariableIdentifier(this);
62 62
	}
63 63

  
64
	public LocalVariableIdentifier(String name, UlyssesType aType, IdentifierKind aKind, IScope aDefiningScope)
64
	public LocalVariableIdentifier(String name, Type aType, IdentifierKind aKind, IScope aDefiningScope)
65 65
	{
66 66
		super (name, aType, aKind, aDefiningScope);
67 67
	}

Also available in: Unified diff