schala/schala-lang/language/src/scope_resolution.rs

205 lines
5.8 KiB
Rust
Raw Normal View History

2019-09-24 03:28:59 -07:00
use std::rc::Rc;
use crate::symbol_table::{SymbolTable, ScopeSegment, ScopeSegmentKind, FullyQualifiedSymbolName};
2019-09-03 01:42:28 -07:00
use crate::ast::*;
2019-09-24 03:28:59 -07:00
use crate::util::ScopeStack;
type FQSNPrefix = Vec<ScopeSegment>;
2019-09-03 01:42:28 -07:00
pub struct ScopeResolver<'a> {
2019-09-24 03:28:59 -07:00
symbol_table: &'a mut SymbolTable,
name_scope_stack: ScopeStack<'a, Rc<String>, FQSNPrefix>,
2019-09-03 02:19:37 -07:00
}
impl<'a> ScopeResolver<'a> {
pub fn new(symbol_table: &'a mut SymbolTable) -> ScopeResolver {
2019-09-24 03:28:59 -07:00
let name_scope_stack = ScopeStack::new(None);
ScopeResolver { symbol_table, name_scope_stack }
2019-09-03 02:59:19 -07:00
}
pub fn resolve(&mut self, ast: &mut AST) -> Result<(), String> {
2019-09-25 01:45:02 -07:00
self.block(&mut ast.statements)?;
2019-09-03 02:59:19 -07:00
Ok(())
}
2019-09-24 18:42:01 -07:00
fn import(&mut self, import_spec: &ImportSpecifier) -> Result<(), String> {
let ImportSpecifier { ref path_components, ref imported_names, .. } = &import_spec;
match imported_names {
ImportedNames::All => unimplemented!(),
ImportedNames::LastOfPath => {
let name = path_components.last().unwrap(); //TODO handle better
let fqsn_prefix = path_components.iter().map(|c| ScopeSegment {
name: c.clone(), kind: ScopeSegmentKind::Type
}).collect();
self.name_scope_stack.insert(name.clone(), fqsn_prefix);
()
}
2019-09-24 19:24:07 -07:00
ImportedNames::List(ref names) => {
let fqsn_prefix: FQSNPrefix = path_components.iter().map(|c| ScopeSegment {
name: c.clone(), kind: ScopeSegmentKind::Type
}).collect();
for name in names.iter() {
self.name_scope_stack.insert(name.clone(), fqsn_prefix.clone());
}
}
2019-09-24 18:42:01 -07:00
};
Ok(())
}
fn decl(&mut self, decl: &Declaration) -> Result<(), String> {
2019-09-09 01:04:46 -07:00
use Declaration::*;
match decl {
2019-09-09 01:04:46 -07:00
Binding { expr, .. } => self.expr(expr),
FuncDecl(_, block) => self.block(block),
_ => Ok(()),
}
2019-09-03 02:59:19 -07:00
}
fn block(&mut self, block: &Block) -> Result<(), String> {
for statement in block.iter() {
match statement.kind {
StatementKind::Declaration(ref decl) => self.decl(decl),
StatementKind::Expression(ref expr) => self.expr(expr),
2019-09-25 01:45:02 -07:00
StatementKind::Import(ref spec) => self.import(spec),
2019-09-09 01:04:46 -07:00
}?;
}
Ok(())
}
2019-09-03 02:59:19 -07:00
fn expr(&mut self, expr: &Expression) -> Result<(), String> {
2019-09-03 10:23:38 -07:00
use ExpressionKind::*;
match &expr.kind {
ExpressionKind::Value(qualified_name) => {
2019-09-20 01:57:48 -07:00
let fqsn = lookup_name_in_scope(&qualified_name);
let ref id = qualified_name.id;
self.symbol_table.map_id_to_fqsn(id, fqsn);
},
2019-09-03 10:23:38 -07:00
NamedStruct { name, .. } => {
let ref id = name.id;
let fqsn = lookup_name_in_scope(&name);
2019-09-20 01:36:58 -07:00
self.symbol_table.map_id_to_fqsn(id, fqsn);
2019-09-03 10:23:38 -07:00
},
BinExp(_, ref lhs, ref rhs) => {
2019-09-03 10:23:38 -07:00
self.expr(lhs)?;
self.expr(rhs)?;
},
PrefixExp(_, ref arg) => {
2019-09-03 10:23:38 -07:00
self.expr(arg)?;
},
TupleLiteral(exprs) => {
for expr in exprs.iter() {
2019-09-03 10:23:38 -07:00
self.expr(expr)?;
}
},
Call { f, arguments } => {
self.expr(&f)?;
for arg in arguments.iter() {
2019-09-03 10:23:38 -07:00
self.invoc(arg)?;
}
2019-09-08 02:11:15 -07:00
},
2019-09-09 01:04:46 -07:00
Lambda { params, body, .. } => {
self.block(&body)?;
for param in params.iter() {
if let Some(ref expr) = param.default {
2019-09-09 01:04:46 -07:00
self.expr(expr)?;
}
}
},
IfExpression { ref body, ref discriminator } => {
match &**discriminator {
2019-09-09 01:04:46 -07:00
Discriminator::Simple(expr) | Discriminator::BinOp(expr, _) => self.expr(expr)?
};
match &**body {
IfExpressionBody::SimplePatternMatch(ref pat, ref alt1, ref alt2) => {
2019-09-09 01:04:46 -07:00
self.pattern(pat)?;
2019-09-10 03:31:23 -07:00
self.block(alt1)?;
if let Some(alt) = alt2 {
2019-09-10 03:31:23 -07:00
self.block(alt)?;
}
2019-09-09 01:04:46 -07:00
},
IfExpressionBody::GuardList(guardarms) => {
for arm in guardarms.iter() {
if let Guard::Pat(ref pat) = arm.guard {
2019-09-09 01:04:46 -07:00
self.pattern(pat)?;
}
self.block(&arm.body)?;
2019-09-08 02:11:15 -07:00
}
}
2019-09-09 01:04:46 -07:00
_ => ()
2019-09-08 02:11:15 -07:00
}
},
_ => ()
};
2019-09-03 02:59:19 -07:00
Ok(())
}
2019-09-03 10:23:38 -07:00
fn invoc(&mut self, invoc: &InvocationArgument) -> Result<(), String> {
2019-09-03 10:23:38 -07:00
use InvocationArgument::*;
match invoc {
Positional(expr) => self.expr(expr),
Keyword { expr, .. } => self.expr(expr),
_ => Ok(())
}
}
2019-09-08 02:11:15 -07:00
fn pattern(&mut self, pat: &Pattern) -> Result<(), String> {
2019-09-08 02:11:15 -07:00
use Pattern::*;
match pat {
Ignored => (),
TuplePattern(patterns) => {
for pat in patterns {
self.pattern(pat)?;
}
},
Literal(_) => (),
TupleStruct(name, patterns) => {
2019-09-08 04:27:04 -07:00
self.qualified_name_in_pattern(name);
2019-09-08 02:11:15 -07:00
for pat in patterns {
self.pattern(pat)?;
}
},
Record(name, key_patterns) => {
2019-09-08 04:27:04 -07:00
self.qualified_name_in_pattern(name);
2019-09-08 02:11:15 -07:00
for (_, pat) in key_patterns {
self.pattern(pat)?;
}
},
VarOrName(name) => {
2019-09-08 04:27:04 -07:00
self.qualified_name_in_pattern(name);
2019-09-08 02:11:15 -07:00
},
};
Ok(())
}
2019-09-08 04:27:04 -07:00
/// this might be a variable or a pattern. if a variable, set to none
fn qualified_name_in_pattern(&mut self, qualified_name: &QualifiedName) {
2019-09-20 02:03:10 -07:00
let ref id = qualified_name.id;
let fqsn = lookup_name_in_scope(qualified_name);
2019-09-20 01:44:20 -07:00
if self.symbol_table.lookup_by_fqsn(&fqsn).is_some() {
self.symbol_table.map_id_to_fqsn(&id, fqsn);
}
2019-09-08 02:11:15 -07:00
}
}
//TODO this is incomplete
fn lookup_name_in_scope(sym_name: &QualifiedName) -> FullyQualifiedSymbolName {
2019-09-19 01:34:21 -07:00
let QualifiedName { components: vec, .. } = sym_name;
let len = vec.len();
let new_vec: Vec<ScopeSegment> = vec.iter().enumerate().map(|(i, name)| {
let kind = if i == (len - 1) {
ScopeSegmentKind::Terminal
} else {
ScopeSegmentKind::Type
};
ScopeSegment { name: name.clone(), kind }
}).collect();
FullyQualifiedSymbolName(new_vec)
}
2019-09-03 02:59:19 -07:00
#[cfg(test)]
mod tests {
#[test]
fn basic_scope() {
}
2019-09-03 01:42:28 -07:00
}