Esempio n. 1
0
void attachInclude(const NodePtr& node, const string& include) {
	node->attachValue(IncludeTag(include));
}
Esempio n. 2
0
File: lang.cpp Progetto: 8l/insieme
	NodePtr markAsDerived(const NodePtr& node, const string& name) {
		node->attachValue(DerivedTag(name));
		return node;
	}
Esempio n. 3
0
	void attachError(const NodePtr& node, const string& msg) {
		node->attachValue(ErrorTag(msg));
	}