Bash++
Bash++ compiler internal documentation
Macros | Functions
syntax_error.cpp File Reference
#include <iostream>
#include <string>
#include <fstream>
#include <stack>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/types.h>
Include dependency graph for syntax_error.cpp:
This graph shows which files directly or indirectly include this file:

Macros

#define SRC_SYNTAX_ERROR_CPP_
 

Functions

void print_syntax_error_or_warning (std::string source_file, int line, int column, const std::string &text, const std::string &msg, std::stack< std::string > include_chain, bool is_warning=false)
 

Macro Definition Documentation

◆ SRC_SYNTAX_ERROR_CPP_

#define SRC_SYNTAX_ERROR_CPP_

Copyright (C) 2025 rail5 Bash++: Bash with classes

Function Documentation

◆ print_syntax_error_or_warning()

void print_syntax_error_or_warning ( std::string  source_file,
int  line,
int  column,
const std::string &  text,
const std::string &  msg,
std::stack< std::string >  include_chain,
bool  is_warning = false 
)

Print a syntax error or warning message to stderr

Parameters
source_fileThe source file which contains the error
lineThe line number where the error occurred
columnThe column number where the error occurred
textThe text of the token which caused the error
msgThe error message to display
include_chainA stack of include files which led to the error
is_warningWhether the message is a warning or an error