KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > compiler > GlobalVarNodeCompiler


1 /*
2  * GlobalVarNodeCompiler.java
3  *
4  * Created on January 17, 2007, 3:13 PM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.jruby.compiler;
11
12 import org.jruby.ast.GlobalVarNode;
13 import org.jruby.ast.Node;
14
15 /**
16  *
17  * @author headius
18  */

19 public class GlobalVarNodeCompiler implements NodeCompiler {
20     
21     /** Creates a new instance of GlobalVarNodeCompiler */
22     public GlobalVarNodeCompiler() {
23     }
24     
25     public void compile(Node node, Compiler JavaDoc context) {
26         context.lineNumber(node.getPosition());
27         
28         GlobalVarNode globalVarNode = (GlobalVarNode)node;
29         
30         context.retrieveGlobalVariable(globalVarNode.getName());
31     }
32     
33 }
34
Popular Tags