Project

General

Profile

root / trunk / compiler / ooasCompiler / src / org / momut / ooas / ast / expressions / UnaryOperator.java @ 7

1
/**
2
  *
3
  *                      OOAS Compiler
4
  *
5
  *       Copyright 2015, AIT Austrian Institute of Technology.
6
  * This code is based on the C# Version of the OOAS Compiler, which is
7
  * copyright 2015 by the Institute of Software Technology, Graz University
8
  * of Technology with portions copyright by the AIT Austrian Institute of
9
  * Technology. All rights reserved.
10
  *
11
  * SEE THE "LICENSE" FILE FOR THE TERMS UNDER WHICH THIS FILE IS PROVIDED.
12
  *
13
  * If you modify the file please update the list of contributors below to in-
14
  * clude your name. Please also stick to the coding convention of using TABs
15
  * to do the basic (block-level) indentation and spaces for anything after
16
  * that. (Enable the display of special chars and it should be pretty obvious
17
  * what this means.) Also, remove all trailing whitespace.
18
  *
19
  * Contributors:
20
  *               Willibald Krenn (AIT)
21
  *               Stephan Zimmerer (AIT)
22
  *               Markus Demetz (AIT)
23
  *               Christoph Czurda (AIT)
24
  *
25
  */
26

    
27

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

    
30
import org.momut.ooas.ast.IAstVisitor;
31
import org.momut.ooas.ast.types.UlyssesType;
32
import org.momut.ooas.utils.exceptions.ArgumentException;
33

    
34

    
35
///////////////////////////////////////////////
36
///  === Unary Operators ===
37
///
38
public class UnaryOperator extends Expression
39
{
40
        private Expression m_child;
41

    
42
        public Expression child() { return m_child; }
43

    
44
        public UnaryOperator(ExpressionKind aKind, Expression child, int line, int pos)
45
        {
46
                super (aKind, line, pos);
47
                m_child = child;
48
        }
49

    
50
        public UnaryOperator(UnaryOperator toCopy)
51
        {
52
                super (toCopy);
53
                m_child = toCopy.m_child;
54
        }
55

    
56
        @Override
57
        public /*override*/ Expression Clone()
58
        {
59
                return new UnaryOperator(this);
60
        }
61

    
62
        public void SetChild(Expression child)
63
        {
64
                m_child = child;
65
        }
66

    
67
        @Override
68
        public /*override*/ void Accept(IAstVisitor visitor)
69
        {
70
                visitor.visit(this);
71
        }
72

    
73
        public static Expression CoerceUp(Expression anExpr, UlyssesType target)
74
        {
75
                if (target == null)
76
                        throw new ArgumentException();
77

    
78
                if (anExpr.kind() == ExpressionKind.Value
79
                                && anExpr.type().kind() == target.kind()
80
                                && UlyssesType.TypeEqual(UlyssesType.CoverType(anExpr.type(), target),target))
81
                {
82
                        // if we are widening the range of a type assigned to a value, then just set the
83
                        // new type and skip constructing a new node.
84
                        anExpr.SetType(target);
85
                        return anExpr;
86
                }
87
                else
88
                {
89
                        final UnaryOperator result = new UnaryOperator(ExpressionKind.Cast, anExpr, anExpr.line(), anExpr.pos());
90
                        result.SetType(target);
91
                        return result;
92
                }
93
        }
94

    
95
        public static Expression TryCoerceUp(Expression anExpr, UlyssesType target)
96
        {
97
                if (!UlyssesType.TypeEqual(anExpr.type(), target))
98
                {
99
                        return CoerceUp(anExpr, target);
100
                }
101
                else
102
                        return anExpr;
103
        }
104

    
105
}
106