Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/plotnik-lib/src/type_system/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ mod quantifier;

pub use arity::Arity;
pub use kind::TypeKind;
pub use primitives::{PrimitiveType, TYPE_CUSTOM_START, TYPE_NODE, TYPE_STRING, TYPE_VOID};
pub use primitives::{PrimitiveType, TYPE_STRING};
pub use quantifier::QuantifierKind;
3 changes: 0 additions & 3 deletions crates/plotnik-lib/src/type_system/primitives.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ pub const TYPE_NODE: u16 = 1;
/// Index for the String type (extracted source text).
pub const TYPE_STRING: u16 = 2;

/// First index available for user-defined/composite types.
pub const TYPE_CUSTOM_START: u16 = 3;

/// Primitive type enumeration.
///
/// These are the builtin scalar types that don't require
Expand Down