mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
24 lines
567 B
C++
24 lines
567 B
C++
#include "CaseDispatchDefaultSelector.h"
|
|
|
|
#include <format/format.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( fmt::Writer& w ) const
|
|
{
|
|
w << "case-dispatch-default-selector";
|
|
}
|
|
|
|
} // namespace Pol::Bscript::Compiler
|