Skip to content

Commit

Permalink
Added SymbolTable interface for future implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastorama committed May 29, 2012
1 parent 5427bc9 commit 6acdfc4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions SymbolTable.java
@@ -0,0 +1,17 @@
public class SymbolTable {
public boolean isDeclared(String symbol, int current_level) {
return false;
}
public void insert(String symbol, boolean ref, int current_level) {

}

public boolean search(String symbol, boolean ref) {

return false;
}

public void destroy(int current_level) {

}
}

0 comments on commit 6acdfc4

Please sign in to comment.