ocelot-ast 0.1.2

Abstract syntax tree types for the ocelot project
Documentation
1
2
3
4
5
6
7
use crate::println_statement::PrintlnStatement;

/// Variants of top-level script statements.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum StatementKind {
    Println(PrintlnStatement),
}