summaryrefslogtreecommitdiff
path: root/src/main/java/io/devnulllabs/openjava/ptree/ExpressionObject.java
blob: d4c4e7582ea9e8be29ff71db84410e6fd66dbe62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * ExpressionObject.java 1.0
 *
 *
 * June 23, 2000
 *
 * @see io.devnulllabs.openjava.ptree.ParseTree
 * @version 1.0 last updated:  June 23, 2000
 * @author  Michiaki Tatsubori
 */
package io.devnulllabs.openjava.ptree;


import io.devnulllabs.openjava.mop.Environment;
import io.devnulllabs.openjava.mop.OJClass;



/**
 * The Expression interface presents common interface
 * to access Expression node of parse tree
 *
 * this interface is implements by
 * <pre>
 *   UnaryExpression
 *   BinaryExpression
 *   ConditionalExpression
 *   AssignmentExpression
 *   CastExpression
 *   AllocationExpression
 *   ArrayAllocationExpression
 *   Variable
 *   MethodCall
 *   SpecialName
 *   Literal
 *   ClassLiteral
 *   ArrayAccess
 *   FieldAccess
 * </pre>
 *
 * @see io.devnulllabs.openjava.ptree.ParseTree
 * @see io.devnulllabs.openjava.ptree.NonLeaf
 */
public abstract class ExpressionObject extends NonLeaf
    implements Expression
{
    private OJClass cachedType = null;

    void soilCache() {
    cachedType = null;
    ParseTree parent = getParent();
    if (parent instanceof ExpressionObject) {
        ExpressionObject pexp = (ExpressionObject) parent;
        pexp.soilCache();
    }
    }

    /**
     * dirty implementation
     */
    public OJClass getCachedType(Environment env) throws Exception {
    if (cachedType == null)  cachedType = getType(env);
    return cachedType;
    }

    public abstract OJClass getType(Environment env, boolean using_cache)
    throws Exception;

    public abstract OJClass getType(Environment env)
    throws Exception;

    /**
     * Makes this ptree a list presenting for
     * [ p ]
     *
     * @param  p  list's element
     */
    protected void set( Object[] ptrees )  {
    soilCache();
    super.set(ptrees);
    }

}