Sha256: dc76d578ecea0be96629b0d5ba1070f422289531757deb69bf0df7086cb58cb0
Contents?: true
Size: 348 Bytes
Versions: 1
Compression:
Stored size: 348 Bytes
Contents
#ifndef COMPILER_RULES_STRING_H_ #define COMPILER_RULES_STRING_H_ #include <string> namespace tree_sitter { namespace rules { struct String { std::string value; inline bool operator==(const String &other) const { return value == other.value; } }; } // namespace rules } // namespace tree_sitter #endif // COMPILER_RULES_STRING_H_
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tree-sitter-0.1.0 | ext/tree-sitter/tree-sitter/src/compiler/rules/string.h |