Example usage for org.objectweb.asm SymbolTable subclass-usage

List of usage examples for org.objectweb.asm SymbolTable subclass-usage

Introduction

In this page you can find the example usage for org.objectweb.asm SymbolTable subclass-usage.

Usage

From source file com.xruby.compiler.codegen.SymbolTable.java

class SymbolTableForBlock extends SymbolTable {
    private SymbolTable owner_;

    public SymbolTableForBlock(List<String> binding, SymbolTable owner) {
        super(binding);
        owner_ = owner;