swamp-semantic 0.2.13

semantic types for swamp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/swamp/swamp
 * Licensed under the MIT License. See LICENSE in the project root for license information.
 */
pub use crate::{
    ArrayItem, ArrayItemRef, AssociatedImpls, BinaryOperator, BooleanExpression, CompoundOperator,
    CompoundOperatorKind, Constant, ConstantRef, EnumLiteralExpressions, Expression,
    ExpressionKind, ExternalFunctionCall, ExternalFunctionDefinition,
    ExternalFunctionDefinitionRef, ExternalFunctionId, ForPattern, FormatSpecifier,
    FormatSpecifierKind, Fp, Function, FunctionRef, FunctionScopeState, Guard,
    InternalFunctionCall, InternalFunctionDefinition, InternalFunctionDefinitionRef, Iterable,
    LocalIdentifier, LocalTypeIdentifier, Match, MatchArm, MemberCall, MutVariable, Pattern,
    PrecisionType, ProgramState, SemanticError, UnaryOperator, Variable, VariableRef,
    err::{Error, ErrorKind},
    intr::{IntrinsicFunction, IntrinsicFunctionDefinition, IntrinsicFunctionDefinitionRef},
};