mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* POLLOG* macros use the new formatting removed all old logging functions * removed old fmt lib from everything except StreamWriter removed unneeded functions * fixed review comments
23 lines
540 B
C++
23 lines
540 B
C++
#include "CaseDispatchDefaultSelector.h"
|
|
|
|
|
|
#include "bscript/compiler/ast/NodeVisitor.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
CaseDispatchDefaultSelector::CaseDispatchDefaultSelector( const SourceLocation& source_location )
|
|
: Node( source_location )
|
|
{
|
|
}
|
|
|
|
void CaseDispatchDefaultSelector::accept( NodeVisitor& visitor )
|
|
{
|
|
visitor.visit_case_dispatch_default_selector( *this );
|
|
}
|
|
|
|
void CaseDispatchDefaultSelector::describe_to( std::string& w ) const
|
|
{
|
|
w += "case-dispatch-default-selector";
|
|
}
|
|
|
|
} // namespace Pol::Bscript::Compiler
|