expr working, debugging def

This commit is contained in:
Anton-4 2021-10-02 19:47:46 +02:00
parent bc50280c0e
commit c6066cc629
8 changed files with 306 additions and 277 deletions

View file

@ -1,173 +1,53 @@
use crate::html::ToHtml;
use crate::html::{mark_node_to_html};
use roc_ast::{ast_error::ASTResult, lang::{self, core::expr::expr_to_expr2::expr_to_expr2}, mem_pool::pool::Pool};
use roc_code_markup::{markup::nodes::expr2_to_markup, slow_pool::SlowPool};
use roc_module::symbol::Interns;
use roc_parse::ast::{Expr, StrLiteral};
use roc_module::symbol::{IdentIds, Interns, ModuleId, ModuleIds};
use roc_parse::ast::{Expr};
use roc_region::all::{Region};
use roc_code_markup::{markup::nodes::{MarkupNode}};
use bumpalo::{Bump, collections::String as BumpString};
use roc_types::subs::VarStore;
impl<'a> ToHtml<'a> for Expr<'a> {
fn css_class(&self) -> Option<&'a str> {
match self {
Expr::Float(_) | Expr::Num(_) | Expr::NonBase10Int { .. } => Some("num"),
Expr::Str(_) => Some("str"),
// Expr::Access(_, _) => {}
// Expr::AccessorFunction(_) => {}
// Expr::List { .. } => {}
// Expr::RecordUpdate { .. } => {}
// Expr::Record { .. } => {}
Expr::Var { .. } => None,
// Expr::Underscore(_) => {}
// Expr::GlobalTag(_) => {}
// Expr::PrivateTag(_) => {}
Expr::Closure(_, _) => None,
// html is written to buf
pub fn expr_to_html<'a>(buf: &mut BumpString<'a>, expr: Expr<'a>, env_module_id: ModuleId, env_module_ids: &'a ModuleIds, interns: &Interns) {
// Expr::Defs(_, _) => {}
// Expr::Backpassing(_, _, _) => {}
// Expr::Expect(_, _) => {}
// Expr::Apply(_, _, _) => {}
// Expr::BinOps(_, _) => {}
// Expr::UnaryOp(_, _) => {}
// Expr::If(_, _) => {}
// Expr::When(_, _) => {}
Expr::SpaceBefore(_, _) => None,
Expr::SpaceAfter(_, _) => None,
// Expr::ParensAround(_) => {}
// Expr::MalformedIdent(_, _) => {}
// Expr::MalformedClosure => {}
// Expr::PrecedenceConflict(_) => {}
_ => None,
}
}
fn html_body(&self, buf: &mut bumpalo::collections::String<'a>) {
match self {
Expr::Float(str) => {
buf.push_str(str);
}
Expr::Num(str) => {
buf.push_str(str);
}
Expr::NonBase10Int { string, .. } => {
buf.push_str(string);
}
Expr::Str(str_literal) => match str_literal {
StrLiteral::PlainLine(str) => {
buf.push('"');
buf.push_str(str);
buf.push('"');
}
StrLiteral::Line(line) => {
panic!("TODO str segments");
}
StrLiteral::Block(str) => {
panic!("TODO str segments");
}
},
// Expr::Access(_, _) => {}
// Expr::AccessorFunction(_) => {}
// Expr::List { .. } => {}
// Expr::RecordUpdate { .. } => {}
// Expr::Record { .. } => {}
Expr::Var { ident, module_name } => {
if !module_name.is_empty() {
buf.push_str(module_name);
buf.push('.');
}
buf.push_str(ident);
}
// Expr::Underscore(_) => {}
// Expr::GlobalTag(_) => {}
// Expr::PrivateTag(_) => {}
Expr::Closure(patterns, loc_sub_expr) => {
ClosureDash.html(buf);
let mut env_pool = Pool::with_capacity(1024);
let mut env_arena = Bump::new();
let mut patterns_iter = patterns.iter().peekable();
let mut var_store = VarStore::default();
let dep_idents = IdentIds::exposed_builtins(8);
let exposed_ident_ids = IdentIds::default();
while let Some(pattern) = patterns_iter.next() {
pattern.value.html(buf);
if let Some(_) = patterns_iter.peek() {
ParamComma.html(buf);
}
}
let mut env = lang::env::Env::new(
env_module_id,
&mut env_arena,
&mut env_pool,
&mut var_store,
dep_idents,
env_module_ids,
exposed_ident_ids,
);
ClosureArrow.html(buf);
loc_sub_expr.html(buf);
}
Expr::Defs(defs, sub_expr) => {
for def_loc in defs.iter() {
unimplemented!();
//def_loc.html(buf);
}
sub_expr.html(buf)
}
// Expr::Backpassing(_, _, _) => {}
// Expr::Expect(_, _) => {}
// Expr::Apply(_, _, _) => {}
// Expr::BinOps(_, _) => {}
// Expr::UnaryOp(_, _) => {}
// Expr::If(_, _) => {}
// Expr::When(_, _) => {}
Expr::SpaceBefore(sub_expr, spaces) => {
for space in spaces.iter() {
space.html(buf);
}
sub_expr.html(buf);
}
Expr::SpaceAfter(sub_expr, spaces) => {
sub_expr.html(buf);
for space in spaces.iter() {
space.html(buf);
}
}
// Expr::ParensAround(_) => {}
// Expr::MalformedIdent(_, _) => {}
// Expr::MalformedClosure => {}
// Expr::PrecedenceConflict(_) => {}
_ => {}
}
}
let mut scope = lang::scope::Scope::new(env.home, env.pool, env.var_store);
let region = Region::new(0, 0, 0, 0);
// TODO remove unwrap
write_expr_to_bump_str_html(
&mut env,
&mut scope,
region,
&expr,
interns,
buf
).unwrap();
}
struct ClosureDash;
impl<'a> ToHtml<'a> for ClosureDash {
fn css_class(&self) -> Option<&'a str> {
Some("closure-dash")
}
fn html_body(&self, buf: &mut bumpalo::collections::String<'a>) {
buf.push('\\')
}
}
struct ClosureArrow;
impl<'a> ToHtml<'a> for ClosureArrow {
fn css_class(&self) -> Option<&'a str> {
Some("closure-arrow")
}
fn html_body(&self, buf: &mut bumpalo::collections::String<'a>) {
buf.push_str(" ->")
}
}
struct ParamComma;
impl<'a> ToHtml<'a> for ParamComma {
fn css_class(&self) -> Option<&'a str> {
Some("param-comma")
}
fn html_body(&self, buf: &mut bumpalo::collections::String<'a>) {
buf.push_str(", ")
}
}
pub fn write_expr_to_bump_str_html<'a, 'b>(
fn write_expr_to_bump_str_html<'a, 'b>(
env: &mut lang::env::Env<'a>,
scope: &mut lang::scope::Scope,
region: Region,
expr: &'a Expr,
interns: &Interns,
bump_str: &mut bumpalo::collections::String<'b>
buf: &mut BumpString<'b>
) -> ASTResult<()> {
let (expr2, _) = expr_to_expr2(env, scope, expr, region);
@ -186,7 +66,7 @@ pub fn write_expr_to_bump_str_html<'a, 'b>(
let expr2_markup_node = mark_node_pool.get(expr2_markup_id);
expr2_markup_node.html(bump_str);
mark_node_to_html(expr2_markup_node, &mark_node_pool, buf);
Ok(())
}