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:

TypeIdentifier.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
///////////////////////////////////////////////
36 36
///  Type Identifier
......
41 41
	public String prefix = "";
42 42

  
43 43
	protected TypeIdentifier(Token aToken,
44
			UlyssesType aType,
44
			Type aType,
45 45
			IdentifierKind someKind,
46 46
			IScope aDefiningScope)
47 47
	{
......
49 49
	}
50 50

  
51 51
	protected TypeIdentifier(String aToken,
52
			UlyssesType aType,
52
			Type aType,
53 53
			IdentifierKind someKind,
54 54
			IScope aDefiningScope)
55 55
	{
......
58 58

  
59 59

  
60 60
	public TypeIdentifier(Token aToken,
61
			UlyssesType aType,
61
			Type aType,
62 62
			IScope aDefiningScope)
63 63
	{
64 64
		super (aToken, aType, IdentifierKind.TypeIdentifier, aDefiningScope);
......
66 66

  
67 67

  
68 68
	public TypeIdentifier(String aName,
69
			UlyssesType aType,
69
			Type aType,
70 70
			IScope aDefiningScope)
71 71
	{
72 72
		super (aName, aType, IdentifierKind.TypeIdentifier, aDefiningScope);

Also available in: Unified diff