01: /*
02: * $Id: EnumerationNode.java,v 1.4 2002/09/16 08:05:04 jkl Exp $
03: *
04: * Copyright (c) 2002 Njet Communications Ltd. All Rights Reserved.
05: *
06: * Use is subject to license terms, as defined in
07: * Anvil Sofware License, Version 1.1. See LICENSE
08: * file, or http://njet.org/license-1.1.txt
09: */
10: package anvil.script.expression;
11:
12: import anvil.core.Any;
13: import anvil.codec.Code;
14: import anvil.script.compiler.ByteCompiler;
15: import anvil.script.Context;
16: import java.io.IOException;
17:
18: /**
19: * class EnumerationNode
20: *
21: * @author: Jani Lehtimäki
22: */
23: public class EnumerationNode extends UnaryParent {
24:
25: public EnumerationNode(Node child) {
26: super (child);
27: }
28:
29: public int typeOf() {
30: return Node.EXPR_NOT;
31: }
32:
33: public boolean isConstant() {
34: return false;
35: }
36:
37: public void compile(ByteCompiler context, int operation) {
38: Code code = context.getCode();
39: _child.compile(context, GET);
40: code.invokestatic(code.getPool().addMethodRef(
41: context.TYPE_COMPILED_SCRIPT, "enum",
42: "(Lanvil/core/Any;)Lanvil/core/Any;"));
43: if (operation == GET_BOOLEAN) {
44: context.any2boolean();
45: }
46: }
47:
48: }
|