blob: 756586988dbf24c146fdb0b494f6283fb67f05e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <yql/essentials/sql/v1/complete/antlr4/defs.h>
namespace NSQLComplete {
bool IsLikelyTypeStack(const TParserCallStack& stack);
bool IsLikelyFunctionStack(const TParserCallStack& stack);
std::unordered_set<TRuleId> GetC3PreferredRules();
} // namespace NSQLComplete
|