aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/ast/yql_pos_handle.h
blob: e00cf63a78c9d81c7b0fac5a6f3cccfc017de94d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <util/system/types.h>

namespace NYql {

struct TPositionHandle {
    friend struct TExprContext;
private:
    ui32 Handle = 0; // 0 is guaranteed to represent default-constructed TPosition
};

}