Docs.rs
  • semantic-analyzer-0.1.1
    • semantic-analyzer 0.1.1
    • Docs.rs crate page
    • MIT
    • Links
    • Homepage
    • Repository
    • crates.io
    • Source
    • Owners
    • mrLSD
    • Dependencies
      • nom_locate ^4.2 normal
    • Versions
    • 10.41% of the crate is documented
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

logo

Module ast

  • Structs
  • Enums
  • Constants
  • Traits
  • Type Aliases
?
Change settings

Module semantic_analyzer::ast

source ·
Expand description

AST

Abstract Syntax Tree representation contains tree node that represent full cycle of the program, and represent turing-complete state machine.

Structs

  • Binding
  • CodeLocation
  • Constant
  • ConstantExpression
  • ConstantName
  • Expression
  • ExpressionCondition
  • ExpressionLogicCondition
  • FunctionCall
  • FunctionName
  • FunctionParameter
  • FunctionStatement
  • IfStatement
  • ImportName
    Specific import name
  • LetBinding
  • ParameterName
  • StructType
  • StructTypes
  • StructValue
  • ValueName

Enums

  • BodyStatement
  • Condition
  • ConstantValue
  • ExpressionOperations
  • ExpressionValue
  • IfBodyStatement
  • IfBodyStatements
  • IfCondition
  • IfLoopBodyStatement
  • LogicCondition
  • LoopBodyStatement
  • MainStatement
  • PrimitiveTypes
  • PrimitiveValue
  • Type

Constants

  • MAX_PRIORITY_LEVEL_FOR_EXPRESSIONS
    Max priority level fpr expressions operations

Traits

  • GetLocation
  • GetName
  • GetType

Type Aliases

  • Ident
    Basic Ident entity
  • ImportPath
    Imports with full path of import
  • Main