mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* compile time optimization: int with doubles and strings doubles with ints and strings strings with ints and doubles * bool with other types, more unary ops, float branch optimizer * more tests fixed bool to dbl compare * output cleanup more tests * optimize string values in if statements, optimize ternary operator * optimize elvis, addes missing files, code cleanup * use array to keep unoptimized if branch in funcexpr tests * missing include * better readable testdata * removed file * optimize while and dowhile loops if predicate is a compile time known value * cleaner variant of loop optimization? * added ConstantPredicateLoop Node used by the optimizer for constant loop predicates optimize repeat until loop change tests to run the loops more then once to be sure they work correctly * test break/continue with label for constant-loop * docs
32 lines
938 B
C++
32 lines
938 B
C++
#ifndef POLSERVER_CONDITIONALOPERATOR_H
|
|
#define POLSERVER_CONDITIONALOPERATOR_H
|
|
|
|
#include "bscript/compiler/ast/Expression.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
class FlowControlLabel;
|
|
class ConditionalOperator : public Expression
|
|
{
|
|
public:
|
|
ConditionalOperator( const SourceLocation&, std::unique_ptr<Expression> conditional,
|
|
std::unique_ptr<Expression> consequent,
|
|
std::unique_ptr<Expression> alternate );
|
|
|
|
void accept( NodeVisitor& ) override;
|
|
void describe_to( std::string& ) const override;
|
|
|
|
Expression& conditional();
|
|
Expression& consequent();
|
|
Expression& alternate();
|
|
const std::shared_ptr<FlowControlLabel> consequent_label;
|
|
const std::shared_ptr<FlowControlLabel> alternate_label;
|
|
|
|
std::unique_ptr<Expression> take_consequent();
|
|
std::unique_ptr<Expression> take_alternate();
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
|
|
#endif // POLSERVER_CONDITIONALOPERATOR_H
|