Bash++
Bash++ compiler internal documentation
|
Classes | |
class | bpp_entity |
The base class for all entities in the Bash++ compiler. More... | |
class | bpp_code_entity |
An entity which can contain code. More... | |
class | bpp_string |
The practical difference between bpp_code_entity and bpp_string is how we handle the code buffers. More... | |
class | bpp_method |
A method in a class. More... | |
class | bpp_constructor |
A constructor in a class. More... | |
class | bpp_destructor |
A destructor in a class. More... | |
class | bpp_method_parameter |
A parameter in a method. More... | |
class | bpp_class |
A class in Bash++. More... | |
class | bpp_object |
An object in Bash++. More... | |
class | bpp_datamember |
A data member in a class. More... | |
class | bpp_program |
The main program. More... | |
class | bash_while_loop |
A while loop in Bash++. More... | |
class | bash_while_condition |
The condition for a while loop in Bash++. More... | |
class | bash_if |
An if statement in Bash++. More... | |
class | bash_if_branch |
A branch of an if statement in Bash++. More... | |
class | bash_case |
A case statement in Bash++. More... | |
class | bash_case_pattern |
A pattern for a case statement in Bash++. More... | |
class | bash_for |
A for loop in Bash++. More... | |
class | bpp_delete_statement |
A delete statement in Bash++. More... | |
class | bpp_dynamic_cast_statement |
A dynamic_cast statement in Bash++. More... | |
class | bpp_pointer_dereference |
A pointer dereference in Bash++. More... | |
class | bpp_value_assignment |
A value assignment statement in Bash++. More... | |
class | bpp_object_assignment |
An object assignment statement in Bash++. More... | |
class | bpp_object_reference |
An object reference in Bash++. More... | |
class | bpp_object_address |
A statement which takes the address of an object in Bash++. More... | |
Enumerations | |
enum | bpp_scope { SCOPE_PUBLIC , SCOPE_PROTECTED , SCOPE_PRIVATE , SCOPE_INACCESSIBLE } |
enum | reference_type { ref_primitive , ref_method , ref_object } |
Variables | |
static const std::shared_ptr< bpp_entity > | inaccessible_entity = std::make_shared<bpp_entity>() |
A placeholder for an inaccessible entity (scope handling) More... | |
static const std::shared_ptr< bpp_datamember > | inaccessible_datamember = std::make_shared<bpp_datamember>() |
A placeholder for an inaccessible data member of a class (scope handling) More... | |
static const std::shared_ptr< bpp_method > | inaccessible_method = std::make_shared<bpp_method>() |
A placeholder for an inaccessible method of a class (scope handling) More... | |
static const char | bpp_nullptr [] = "0" |
The secret internal value of '@nullptr' in Bash++. More... | |
Copyright (C) 2025 rail5 Bash++: Bash with classes
enum bpp::bpp_scope |
enum bpp::reference_type |
|
static |
The secret internal value of '@nullptr' in Bash++.
|
static |
A placeholder for an inaccessible data member of a class (scope handling)
|
static |
A placeholder for an inaccessible entity (scope handling)
|
static |
A placeholder for an inaccessible method of a class (scope handling)