diff options
Diffstat (limited to 'Homework/cs5300/compiler/submit/ast/Declaration.java')
| -rw-r--r-- | Homework/cs5300/compiler/submit/ast/Declaration.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Homework/cs5300/compiler/submit/ast/Declaration.java b/Homework/cs5300/compiler/submit/ast/Declaration.java new file mode 100644 index 0000000..c70e856 --- /dev/null +++ b/Homework/cs5300/compiler/submit/ast/Declaration.java @@ -0,0 +1,13 @@ +/* + * Code formatter project + * CS 4481 + */ +package submit.ast; + +/** + * + * @author edwajohn + */ +public interface Declaration extends Statement, Node { + +} |
