Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Name:STC.java
- // Author: David Sinclair Date: 29 Aug 2012
- //
- // Very basic Symbol Table implementation
- //
- import java.util.*;
- public class STC extends Object
- {
- String type;
- String value;
- String declared;
- //String scope;
- public STC(String ivalue, String itype, String ideclared)//, String iScope)
- {
- value = ivalue;
- type = itype;
- declared = ideclared;
- //scope = iScope;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement