runtime/bytecode/compiler: remove

This commit is contained in:
Ryan Chandler 2022-07-26 17:56:23 +01:00
parent f5c3143468
commit f88e2cd11d
No known key found for this signature in database
GPG Key ID: F113BCADDB3B0CCA
6 changed files with 0 additions and 49 deletions

View File

@ -1,7 +0,0 @@
[package]
name = "trunk_bytecode"
version = "0.1.0"
edition = "2021"
[lib]
doctest = false

View File

@ -1,11 +0,0 @@
pub type Register = usize;
pub struct Instruction {
pub dest: Register,
pub code: Code,
}
#[derive(Debug, PartialEq)]
pub enum Code {
}

View File

@ -1,12 +0,0 @@
[package]
name = "trunk_compiler"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
trunk_parser = { path = "../trunk_parser" }
[lib]
doctest = false

View File

@ -1,3 +0,0 @@
pub fn compile() {
}

View File

@ -1,8 +0,0 @@
[package]
name = "trunk_runtime"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -1,8 +0,0 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}