polserver/pol-core/bscript/compiler/ast/Value.cpp
Eric Swanson 3a8ab09a56
Add Expression, Statement, Value AST base classes, and TopLevelStatements (#229)
* Add ast/ Expression, Statement, Value

* Add ast/TopLevelStatements
2020-08-17 22:53:03 -07:00

7 lines
184 B
C++

#include "Value.h"
namespace Pol::Bscript::Compiler
{
Value::Value( const SourceLocation& source_location ) : Expression( source_location ) {}
} // namespace Pol::Bscript::Compiler