Bash++
Bash++ compiler internal documentation
Public Member Functions | Private Attributes | List of all members
bpp::bpp_value_assignment Class Reference

A value assignment statement in Bash++. More...

#include <bpp.h>

Inheritance diagram for bpp::bpp_value_assignment:
Inheritance graph
[legend]
Collaboration diagram for bpp::bpp_value_assignment:
Collaboration graph
[legend]

Public Member Functions

 bpp_value_assignment ()
 
void set_nonprimitive_assignment (bool is_nonprimitive)
 
void set_nonprimitive_object (std::shared_ptr< bpp_entity > object)
 
void set_lvalue_nonprimitive (bool is_nonprimitive)
 
void set_array_assignment (bool is_array)
 
void set_adding (bool is_adding)
 
bool is_nonprimitive_assignment () const
 
std::shared_ptr< bpp_entityget_nonprimitive_object () const
 
bool lvalue_is_nonprimitive () const
 
bool is_array_assignment () const
 
bool is_adding () const
 
- Public Member Functions inherited from bpp::bpp_string
 bpp_string ()
 
void add_code (const std::string &code, bool add_newline=true) override
 Add code to the primary buffer. More...
 
void add_code_to_previous_line (const std::string &code) override
 Add code to the pre-code buffer. More...
 
void add_code_to_next_line (const std::string &code) override
 Add code to the post-code buffer. More...
 
std::string get_code () const override
 Return the contents of the main code buffer as a string. More...
 
std::string get_pre_code () const override
 Return the contents of the pre-code buffer as a string. More...
 
std::string get_post_code () const override
 Return the contents of the post-code buffer as a string. More...
 
- Public Member Functions inherited from bpp::bpp_code_entity
 bpp_code_entity ()
 
virtual ~bpp_code_entity ()=default
 
bool add_object (std::shared_ptr< bpp_object > object) override
 Add an object to the code entity. More...
 
virtual void flush_nextline_buffer ()
 
virtual void flush_postline_buffer ()
 
virtual void flush_code_buffers ()
 
virtual void clear_all_buffers ()
 
- Public Member Functions inherited from bpp::bpp_entity
virtual ~bpp_entity ()=default
 
virtual bool add_class (std::shared_ptr< bpp_class > class_)
 Add a class to this entity's list of classes. More...
 
virtual std::shared_ptr< bpp_classget_class () const
 
virtual std::string get_address () const
 
virtual std::string get_name () const
 
virtual std::weak_ptr< bpp::bpp_classget_containing_class () const
 Get the class which contains this entity. More...
 
virtual bool set_containing_class (std::weak_ptr< bpp::bpp_class > containing_class)
 
virtual void inherit (std::shared_ptr< bpp_entity > parent)
 Inherit from a parent entity. More...
 
virtual void inherit (std::shared_ptr< bpp_class > parent)
 
virtual std::unordered_map< std::string, std::shared_ptr< bpp_class > > get_classes () const
 
virtual std::unordered_map< std::string, std::shared_ptr< bpp_object > > get_objects () const
 
virtual std::shared_ptr< bpp_classget_class (const std::string &name)
 
virtual std::shared_ptr< bpp_objectget_object (const std::string &name)
 

Private Attributes

bool nonprimitive_assignment = false
 
std::shared_ptr< bpp_entitynonprimitive_object
 
bool lvalue_nonprimitive = false
 
bool array_assignment = false
 
bool adding = false
 

Additional Inherited Members

- Protected Attributes inherited from bpp::bpp_code_entity
std::shared_ptr< std::ostream > code = std::make_shared<std::ostringstream>()
 
std::string nextline_buffer = ""
 
std::string postline_buffer = ""
 
bool buffers_flushed = false
 
- Protected Attributes inherited from bpp::bpp_entity
std::unordered_map< std::string, std::shared_ptr< bpp_class > > classes
 A map of class names to class objects within this entity. More...
 
std::unordered_map< std::string, std::shared_ptr< bpp_object > > objects
 A map of object names to bpp_objects within this entity. More...
 
std::unordered_map< std::string, std::shared_ptr< bpp_object > > local_objects
 Like objects, but only for objects whose scope is local to this entity. More...
 
std::shared_ptr< bpp_classtype = nullptr
 
std::weak_ptr< bpp_classcontaining_class
 
std::vector< std::shared_ptr< bpp_class > > parents
 

Detailed Description

A value assignment statement in Bash++.

The 'bpp_' prefix signifies that this is used to parse a statement type which is unique to Bash++

Constructor & Destructor Documentation

◆ bpp_value_assignment()

bpp::bpp_value_assignment::bpp_value_assignment ( )

Member Function Documentation

◆ get_nonprimitive_object()

std::shared_ptr< bpp_entity > bpp::bpp_value_assignment::get_nonprimitive_object ( ) const

◆ is_adding()

bool bpp::bpp_value_assignment::is_adding ( ) const

◆ is_array_assignment()

bool bpp::bpp_value_assignment::is_array_assignment ( ) const

◆ is_nonprimitive_assignment()

bool bpp::bpp_value_assignment::is_nonprimitive_assignment ( ) const

◆ lvalue_is_nonprimitive()

bool bpp::bpp_value_assignment::lvalue_is_nonprimitive ( ) const

◆ set_adding()

void bpp::bpp_value_assignment::set_adding ( bool  is_adding)

◆ set_array_assignment()

void bpp::bpp_value_assignment::set_array_assignment ( bool  is_array)

◆ set_lvalue_nonprimitive()

void bpp::bpp_value_assignment::set_lvalue_nonprimitive ( bool  is_nonprimitive)

◆ set_nonprimitive_assignment()

void bpp::bpp_value_assignment::set_nonprimitive_assignment ( bool  is_nonprimitive)

◆ set_nonprimitive_object()

void bpp::bpp_value_assignment::set_nonprimitive_object ( std::shared_ptr< bpp_entity object)

Member Data Documentation

◆ adding

bool bpp::bpp_value_assignment::adding = false
private

◆ array_assignment

bool bpp::bpp_value_assignment::array_assignment = false
private

◆ lvalue_nonprimitive

bool bpp::bpp_value_assignment::lvalue_nonprimitive = false
private

◆ nonprimitive_assignment

bool bpp::bpp_value_assignment::nonprimitive_assignment = false
private

◆ nonprimitive_object

std::shared_ptr<bpp_entity> bpp::bpp_value_assignment::nonprimitive_object
private

The documentation for this class was generated from the following files: