go_types/check/
mod.rs

1// Copyright 2022 The Goscript Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5#[macro_use]
6mod util;
7mod assignment;
8mod builtin;
9mod call;
10mod check;
11mod conversion;
12mod decl;
13mod expr;
14mod initorder;
15mod interface;
16mod label;
17mod resolver;
18mod returns;
19mod stmt;
20mod typexpr;
21
22pub(crate) use check::FilesContext;
23pub use check::{Checker, TypeInfo};
24pub use interface::{IfaceInfo, MethodInfo};
25pub use resolver::*;