//! Vendored versions of some constants from the polar-ast crate.
/// The inner element of [`polar_ast::Symbol`] used to represent a primitive string.
pub const PRIMITIVE_STRING_SYMBOL: &str = "String";
/// The inner element of [`polar_ast::Symbol`] used to represent a primitive integer.
pub const PRIMITIVE_INTEGER_SYMBOL: &str = "Integer";
/// The inner element of [`polar_ast::Symbol`] used to represent a primitive boolean.
pub const PRIMITIVE_BOOLEAN_SYMBOL: &str = "Boolean";