xo-reader: streamline: + parserstatemachine::pop_exprstate() + use
This commit is contained in:
parent
bcb2af4a56
commit
4232da4ef2
12 changed files with 36 additions and 14 deletions
19
src/reader/parserstatemachine.cpp
Normal file
19
src/reader/parserstatemachine.cpp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/* file parserstatemachine.cpp
|
||||
*
|
||||
* author: Roland Conybeare
|
||||
*/
|
||||
|
||||
#include "parserstatemachine.hpp"
|
||||
#include "exprstatestack.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace scm {
|
||||
std::unique_ptr<exprstate>
|
||||
parserstatemachine::pop_exprstate() {
|
||||
return p_stack_->pop_exprstate();
|
||||
}
|
||||
} /*namespace scm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
|
||||
/* end parserstatemachine.cpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue