aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/select/constant.cpp
blob: 65cb2f6aa849aada3fb69d436191fefa8fb3c698 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "constant.h"
#include "visitor.h"
#include <ostream>

namespace document::select {

Constant::Constant(bool value)
    : Node(value ? "true" : "false"), // TODO remove required name from Node
      _value(value)
{
}

ResultList
Constant::trace(const Context&, std::ostream& ost) const
{
    ost << "Constant - " << Result::get(_value) << ".\n";
    return ResultList(Result::get(_value));
}


void
Constant::visit(Visitor &v) const
{
    v.visitConstant(*this);
}


void
Constant::print(std::ostream& out, bool, const std::string&) const
{
    if (_parentheses) out << '(';
    out << _name;
    if (_parentheses) out << ')';
}

}