blob: fd18cb22bd7a962b498f27719499ccd8ddfd8c12 (
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
|
#pragma once
#include "yql_type_annotation.h"
#include <yql/essentials/ast/yql_expr.h>
namespace NYql {
const TExprNode::TPtr* ImportFreezed(
const TPosition& position,
const TString& path,
const TString& name,
TExprContext& ctx,
TTypeAnnotationContext& types);
// TODO(YQL-20436): reuse it anywhere.
TExprNode::TPtr ImportDeeplyCopied(
const TPosition& position,
const TString& path,
const TString& name,
TExprContext& ctx,
TTypeAnnotationContext& types);
} // namespace NYql
|