You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							728 B
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							728 B
						
					
					
				package chocopy.common.astnodes;
 | 
						|
 | 
						|
import chocopy.common.analysis.NodeAnalyzer;
 | 
						|
import java_cup.runtime.ComplexSymbolFactory.Location;
 | 
						|
 | 
						|
/**
 | 
						|
 * List-indexing expression.
 | 
						|
 */
 | 
						|
public class IndexExpr extends Expr {
 | 
						|
 | 
						|
    /**
 | 
						|
     * Indexed list.
 | 
						|
     */
 | 
						|
    public final Expr list;
 | 
						|
    /**
 | 
						|
     * Expression for index value.
 | 
						|
     */
 | 
						|
    public final Expr index;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The AST for
 | 
						|
     * LIST[INDEX].
 | 
						|
     * spanning source locations [LEFT..RIGHT].
 | 
						|
     */
 | 
						|
    public IndexExpr(Location left, Location right, Expr list, Expr index) {
 | 
						|
        super(left, right);
 | 
						|
        this.list = list;
 | 
						|
        this.index = index;
 | 
						|
    }
 | 
						|
 | 
						|
    public <T> T dispatch(NodeAnalyzer<T> analyzer) {
 | 
						|
        return analyzer.analyze(this);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |