Add beginnings of editor/ast

This commit is contained in:
Richard Feldman 2020-05-31 16:47:55 -04:00
parent c6db3b16df
commit 68a3550e7e
2 changed files with 491 additions and 0 deletions

View file

@ -6,6 +6,7 @@ use winit::event::{ElementState, ModifiersState, VirtualKeyCode};
use winit::event_loop::ControlFlow;
pub mod text_state;
pub mod ast;
/// The editor is actually launched from the CLI if you pass it zero arguments,
/// or if you provide it 1 or more files or directories to open on launch.