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:

TypeExpression.java
28 28
package org.momut.ooas.ast.expressions;
29 29

  
30 30
import org.momut.ooas.ast.IAstVisitor;
31
import org.momut.ooas.ast.types.UlyssesType;
31
import org.momut.ooas.ast.types.Type;
32 32

  
33 33
///////////////////////////////////////////////
34 34
///  Some identifier
35 35
///
36 36
public class TypeExpression extends LeafExpression
37 37
{
38
	public TypeExpression(UlyssesType atype, int line, int pos)
38
	public TypeExpression(Type atype, int line, int pos)
39 39
	{
40 40
		super (LeafTypeEnum.type, ExpressionKind.Type, line, pos);
41 41
		m_type = atype;

Also available in: Unified diff