pragma + watermarks
This commit is contained in:
@ -1,3 +1,6 @@
|
||||
/* Code Generator */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
#include "codegen.h"
|
||||
|
||||
int generate() {
|
||||
|
@ -1,3 +1,6 @@
|
||||
/* Code Generator */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdarg.h>
|
||||
|
@ -1,3 +1,6 @@
|
||||
/* Syntax Analyzer with Bison (3.8.2) */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../src/codegen.h"
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
/* Syntax Analyzer with Bison (3.8.2) */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
/* Intermediate Code */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
#include "intermediate_code.h"
|
||||
|
||||
// TODO: this is here to bring your attention to the comment bellow.
|
||||
|
@ -1,3 +1,6 @@
|
||||
/* Intermediate Code */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdarg.h>
|
||||
|
@ -1,3 +1,8 @@
|
||||
/* Lexical Analyzer with Flex (1.6.0) */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../src/symbol_table.h"
|
||||
#include "../tmp/grammar.tab.h"
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
/* Symbol Table */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdarg.h>
|
||||
|
@ -1,3 +1,6 @@
|
||||
/* Type Definitions */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
// identifier
|
||||
#define ID 101
|
||||
// type names
|
||||
|
Reference in New Issue
Block a user