Bash++
Bash++ compiler internal documentation
Classes | Macros
BashppListener.h File Reference
#include <iostream>
#include <vector>
#include <set>
#include <list>
#include <memory>
#include <stack>
#include <antlr4-runtime.h>
#include "../antlr/BashppParserBaseListener.h"
#include "../bpp_include/bpp_entity.cpp"
#include "../bpp_include/bpp_code_entity.cpp"
#include "../bpp_include/bpp_string.cpp"
#include "../bpp_include/bash_while_loop.cpp"
#include "../bpp_include/bash_while_condition.cpp"
#include "../bpp_include/bash_if.cpp"
#include "../bpp_include/bash_if_branch.cpp"
#include "../bpp_include/bash_case.cpp"
#include "../bpp_include/bash_case_pattern.cpp"
#include "../bpp_include/bash_for.cpp"
#include "../bpp_include/bpp_delete_statement.cpp"
#include "../bpp_include/bpp_dynamic_cast_statement.cpp"
#include "../bpp_include/bpp_value_assignment.cpp"
#include "../bpp_include/bpp_object_reference.cpp"
#include "../bpp_include/bpp_object_assignment.cpp"
#include "../bpp_include/bpp_pointer_dereference.cpp"
#include "../bpp_include/bpp_program.cpp"
#include "../bpp_include/bpp_class.cpp"
#include "../bpp_include/bpp_constructor.cpp"
#include "../bpp_include/bpp_destructor.cpp"
#include "../bpp_include/bpp_datamember.cpp"
#include "../bpp_include/bpp_method.cpp"
#include "../bpp_include/bpp_method_parameter.cpp"
#include "../bpp_include/bpp_object.cpp"
#include "../syntax_error.cpp"
#include "../internal_error.cpp"
Include dependency graph for BashppListener.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  BashppListener
 The main listener class for the Bash++ compiler. More...
 
struct  BashppListener::code_segment
 A struct to hold (compiled) code segments. More...
 

Macros

#define skip_singlequote_string   if (in_singlequote_string) return;
 
#define skip_syntax_errors
 
#define set_error_context   error_thrown = true; error_context = ctx;
 
#define output_syntax_error(symbol, msg)
 
#define throw_syntax_error_sym(symbol, msg)
 
#define throw_syntax_error(token, msg)
 
#define throw_syntax_error_from_exitRule(token, msg)
 
#define show_warning_sym(symbol, msg)
 
#define show_warning(token, msg)
 

Macro Definition Documentation

◆ output_syntax_error

#define output_syntax_error (   symbol,
  msg 
)
Value:
int line = symbol->getLine(); \
int column = symbol->getCharPositionInLine(); \
std::string text = symbol->getText(); \
print_syntax_error_or_warning(source_file, line, column, text, msg, get_include_stack()); \
program_has_errors = true;

◆ set_error_context

#define set_error_context   error_thrown = true; error_context = ctx;

◆ show_warning

#define show_warning (   token,
  msg 
)
Value:
antlr4::Token* symbol = token->getSymbol(); \
show_warning_sym(symbol, msg)

◆ show_warning_sym

#define show_warning_sym (   symbol,
  msg 
)
Value:
if (!suppress_warnings) { \
int line = symbol->getLine(); \
int column = symbol->getCharPositionInLine(); \
std::string text = symbol->getText(); \
print_syntax_error_or_warning(source_file, line, column, text, msg, get_include_stack(), true); \
}

◆ skip_singlequote_string

#define skip_singlequote_string   if (in_singlequote_string) return;

◆ skip_syntax_errors

#define skip_syntax_errors
Value:
if (error_thrown) { \
if (error_context == ctx) { \
error_thrown = false; \
error_context = nullptr; \
} \
return; \
}

◆ throw_syntax_error

#define throw_syntax_error (   token,
  msg 
)
Value:
antlr4::Token* symbol = token->getSymbol(); \
throw_syntax_error_sym(symbol, msg) \
set_error_context \
return;

◆ throw_syntax_error_from_exitRule

#define throw_syntax_error_from_exitRule (   token,
  msg 
)
Value:
antlr4::Token* symbol = token->getSymbol(); \
output_syntax_error(symbol, msg) \
return;

◆ throw_syntax_error_sym

#define throw_syntax_error_sym (   symbol,
  msg 
)
Value:
output_syntax_error(symbol, msg) \
set_error_context \
return;
#define output_syntax_error(symbol, msg)
Definition: BashppListener.h:169