summaryrefslogtreecommitdiff
path: root/fast/grammar.cc
blob: 946b0627db9f14e7a2a1415256945f293d698c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "grammar.hh"

namespace Grammar {


string
NT::s()
{
  ostringstream os;
  os << "NT<" << this->symbol << "," << this->index << ">";
  return os.str();
}


} // namespace