From 14dfeb8e7d2aa87a361a711a485243449426b144 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Tue, 7 May 2019 16:28:39 +0200 Subject: Reorganize dhall_syntax --- dhall_syntax/src/core.rs | 464 ----------------------------------------------- 1 file changed, 464 deletions(-) delete mode 100644 dhall_syntax/src/core.rs (limited to 'dhall_syntax/src/core.rs') diff --git a/dhall_syntax/src/core.rs b/dhall_syntax/src/core.rs deleted file mode 100644 index 2b76b9a..0000000 --- a/dhall_syntax/src/core.rs +++ /dev/null @@ -1,464 +0,0 @@ -#![allow(non_snake_case)] -use std::collections::BTreeMap; -use std::rc::Rc; - -use crate::visitor; -use crate::*; - -pub type Integer = isize; -pub type Natural = usize; -pub type Double = NaiveDouble; - -/// An empty type -#[derive(Debug, Copy, Clone, PartialEq, Eq)] -pub enum X {} - -pub fn trivial_result(x: Result) -> T { - match x { - Ok(x) => x, - Err(e) => match e {}, - } -} - -/// Double with bitwise equality -#[derive(Debug, Copy, Clone)] -pub struct NaiveDouble(f64); - -impl PartialEq for NaiveDouble { - fn eq(&self, other: &Self) -> bool { - self.0.to_bits() == other.0.to_bits() - } -} - -impl Eq for NaiveDouble {} - -impl From for NaiveDouble { - fn from(x: f64) -> Self { - NaiveDouble(x) - } -} - -impl From for f64 { - fn from(x: NaiveDouble) -> f64 { - x.0 - } -} - -/// Constants for a pure type system -#[derive(Debug, Copy, Clone, PartialEq, Eq)] -pub enum Const { - Type, - Kind, - Sort, -} - -/// Bound variable -/// -/// The `Label` field is the variable's name (i.e. \"`x`\"). -/// The `Int` field is a DeBruijn index. -/// See dhall-lang/standard/semantics.md for details -#[derive(Debug, Clone, PartialEq, Eq)] -pub struct V