From 6acdfc4475ad09cba1326a9bfe93d0ecdb05db7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastia=CC=83o=20Ferreira?= Date: Tue, 29 May 2012 20:39:43 -0300 Subject: [PATCH] Added SymbolTable interface for future implementation --- SymbolTable.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 SymbolTable.java diff --git a/SymbolTable.java b/SymbolTable.java new file mode 100644 index 0000000..af8f0ce --- /dev/null +++ b/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) { + + } +}