Uses of Class
java_cup.lalr_item_set

Packages that use lalr_item_set
java_cup   
 

Uses of lalr_item_set in java_cup
 

Methods in java_cup that return lalr_item_set
 lalr_item_set lalr_state.items()
          The item set for this state.
 

Methods in java_cup with parameters of type lalr_item_set
 void lalr_item_set.add(lalr_item_set other)
          Add a complete set, merging lookaheads where items are already in the set
 boolean lalr_item_set.equals(lalr_item_set other)
          Equality comparison.
static lalr_state lalr_state.find_state(lalr_item_set itms)
          Find and return state with a given a kernel item set (or null if not found).
 boolean lalr_item_set.is_subset_of(lalr_item_set other)
          Is this set an (improper) subset of another?
 boolean lalr_item_set.is_superset_of(lalr_item_set other)
          Is this set an (improper) superset of another?
 void lalr_item_set.remove(lalr_item_set other)
          Remove (set subtract) a complete set.
 

Constructors in java_cup with parameters of type lalr_item_set
lalr_item_set(lalr_item_set other)
          Constructor for cloning from another set.
lalr_state(lalr_item_set itms)
          Constructor for building a state from a set of items.