Testing update with check.sh
This commit is contained in:
@ -1,15 +1,17 @@
|
||||
/* Lexical Analyzer with Flex (1.6.0) */
|
||||
/* Lexical Analyzer with Flex (1.6.0) */
|
||||
/* The Translators - Spring 2025 */
|
||||
|
||||
%option noyywrap
|
||||
%option header-file="flex.h"
|
||||
|
||||
%{
|
||||
#include <stdbool.h>
|
||||
//#include "typedefs.h"
|
||||
#include "grammar.tab.h"
|
||||
int line_number = 1, column_number = 1;
|
||||
#ifndef DEBUG
|
||||
#define DEBUG 0
|
||||
#endif
|
||||
|
||||
int line_number = 1, column_number = 1;
|
||||
%}
|
||||
|
||||
STARCOM [^\*]|\*+[^\)\*]+
|
||||
|
Reference in New Issue
Block a user