2021-10-21 14:46:42 -07:00
|
|
|
use std::collections::{hash_map::Entry, HashMap};
|
2018-05-20 20:36:57 -07:00
|
|
|
use std::fmt;
|
2021-10-21 14:46:42 -07:00
|
|
|
use std::rc::Rc;
|
2018-05-20 20:36:57 -07:00
|
|
|
|
2019-01-07 13:00:37 -08:00
|
|
|
use crate::ast;
|
2021-10-21 14:46:42 -07:00
|
|
|
use crate::ast::{
|
|
|
|
Declaration, ItemId, ModuleSpecifier, Statement, StatementKind, TypeBody, TypeSingletonName,
|
2021-10-21 19:53:50 -07:00
|
|
|
Variant, VariantKind,
|
2021-10-21 14:46:42 -07:00
|
|
|
};
|
|
|
|
use crate::tokenizing::Location;
|
2021-10-25 16:12:24 -07:00
|
|
|
use crate::typechecking::TypeId;
|
2018-05-20 20:36:57 -07:00
|
|
|
|
2021-10-19 13:48:00 -07:00
|
|
|
mod resolver;
|
2019-10-17 03:15:39 -07:00
|
|
|
mod symbol_trie;
|
|
|
|
use symbol_trie::SymbolTrie;
|
2019-10-16 19:51:43 -07:00
|
|
|
mod test;
|
|
|
|
|
2021-10-21 15:23:48 -07:00
|
|
|
|
2021-10-24 02:02:04 -07:00
|
|
|
//TODO parameterize different types of ID
|
2021-10-21 15:23:48 -07:00
|
|
|
/// ID used for definitions
|
|
|
|
#[derive(Debug, PartialEq, Eq, Hash, Clone, Default)]
|
|
|
|
pub struct DefId {
|
|
|
|
idx: u32,
|
|
|
|
}
|
|
|
|
|
2021-10-24 02:54:21 -07:00
|
|
|
impl DefId {
|
|
|
|
pub fn as_u32(&self) -> u32 {
|
|
|
|
self.idx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-21 15:23:48 -07:00
|
|
|
impl fmt::Display for DefId {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "DefId:{}", self.idx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct DefIdStore {
|
|
|
|
last_idx: u32
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DefIdStore {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self { last_idx: 0 }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fresh(&mut self) -> DefId {
|
|
|
|
let idx = self.last_idx;
|
|
|
|
self.last_idx += 1;
|
|
|
|
DefId { idx }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-18 21:56:48 -07:00
|
|
|
/// Fully-qualified symbol name
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)]
|
2021-10-19 21:14:15 -07:00
|
|
|
pub struct Fqsn {
|
2021-10-21 14:46:42 -07:00
|
|
|
//TODO Fqsn's need to be cheaply cloneable
|
|
|
|
scopes: Vec<Scope>, //TODO rename to ScopeSegment
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
|
|
|
|
2021-10-19 21:14:15 -07:00
|
|
|
impl Fqsn {
|
2021-10-21 14:46:42 -07:00
|
|
|
fn from_scope_stack(scopes: &[Scope], new_name: Rc<String>) -> Self {
|
|
|
|
let mut v = Vec::new();
|
|
|
|
for s in scopes {
|
|
|
|
v.push(s.clone());
|
|
|
|
}
|
|
|
|
v.push(Scope::Name(new_name));
|
|
|
|
Fqsn { scopes: v }
|
2021-10-19 17:22:35 -07:00
|
|
|
}
|
2021-10-21 14:46:42 -07:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
fn from_strs(strs: &[&str]) -> Fqsn {
|
|
|
|
let mut scopes = vec![];
|
|
|
|
for s in strs {
|
|
|
|
scopes.push(Scope::Name(Rc::new(s.to_string())));
|
|
|
|
}
|
|
|
|
Fqsn { scopes }
|
2021-10-19 17:22:35 -07:00
|
|
|
}
|
2021-10-21 21:55:21 -07:00
|
|
|
|
|
|
|
fn local_name(&self) -> Rc<String> {
|
|
|
|
let Scope::Name(name) = self.scopes.last().unwrap();
|
|
|
|
name.clone()
|
|
|
|
}
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
|
|
|
|
2021-10-25 12:47:35 -07:00
|
|
|
impl fmt::Display for Fqsn {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
let delim = "::";
|
|
|
|
let Fqsn { scopes } = self;
|
|
|
|
write!(f, "FQSN<{}", scopes[0])?;
|
|
|
|
for item in scopes[1..].iter() {
|
|
|
|
write!(f, "{}{}", delim, item)?;
|
|
|
|
}
|
|
|
|
write!(f, ">")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-10-18 21:56:48 -07:00
|
|
|
//TODO eventually this should use ItemId's to avoid String-cloning
|
|
|
|
/// One segment within a scope.
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)]
|
|
|
|
enum Scope {
|
2021-10-21 14:46:42 -07:00
|
|
|
Name(Rc<String>),
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
|
|
|
|
2021-10-25 12:47:35 -07:00
|
|
|
impl fmt::Display for Scope {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
let Scope::Name(name) = self;
|
|
|
|
write!(f, "{}", name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 13:54:32 -07:00
|
|
|
#[allow(dead_code)]
|
2021-10-18 21:56:48 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2021-10-19 19:19:21 -07:00
|
|
|
pub enum SymbolError {
|
2021-10-21 14:46:42 -07:00
|
|
|
DuplicateName {
|
|
|
|
prev_name: Fqsn,
|
|
|
|
location: Location,
|
|
|
|
},
|
|
|
|
DuplicateRecord {
|
|
|
|
type_name: Fqsn,
|
|
|
|
location: Location,
|
|
|
|
member: String,
|
|
|
|
},
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
|
|
|
|
2021-10-19 13:54:32 -07:00
|
|
|
#[allow(dead_code)]
|
2021-10-18 22:24:04 -07:00
|
|
|
#[derive(Debug)]
|
|
|
|
struct NameSpec<K> {
|
2021-10-21 14:46:42 -07:00
|
|
|
location: Location,
|
|
|
|
kind: K,
|
2021-10-18 22:24:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
enum NameKind {
|
2021-10-21 14:46:42 -07:00
|
|
|
Module,
|
|
|
|
Function,
|
|
|
|
Binding,
|
2021-10-18 22:24:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct TypeKind;
|
|
|
|
|
2021-10-18 21:56:48 -07:00
|
|
|
/// Keeps track of what names were used in a given namespace.
|
2021-10-18 22:24:04 -07:00
|
|
|
struct NameTable<K> {
|
2021-10-21 14:46:42 -07:00
|
|
|
table: HashMap<Fqsn, NameSpec<K>>,
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
|
|
|
|
2021-10-18 22:24:04 -07:00
|
|
|
impl<K> NameTable<K> {
|
2021-10-21 14:46:42 -07:00
|
|
|
fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
table: HashMap::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn register(&mut self, name: Fqsn, spec: NameSpec<K>) -> Result<(), SymbolError> {
|
|
|
|
match self.table.entry(name.clone()) {
|
|
|
|
Entry::Occupied(o) => Err(SymbolError::DuplicateName {
|
|
|
|
prev_name: name,
|
|
|
|
location: o.get().location,
|
|
|
|
}),
|
|
|
|
Entry::Vacant(v) => {
|
|
|
|
v.insert(spec);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-20 20:36:57 -07:00
|
|
|
//cf. p. 150 or so of Language Implementation Patterns
|
|
|
|
pub struct SymbolTable {
|
2021-10-21 15:23:48 -07:00
|
|
|
|
|
|
|
def_id_store: DefIdStore,
|
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
/// Used for import resolution.
|
|
|
|
symbol_trie: SymbolTrie,
|
2021-10-19 13:48:00 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
/// These tables are responsible for preventing duplicate names.
|
|
|
|
fq_names: NameTable<NameKind>, //Note that presence of two tables implies that a type and other binding with the same name can co-exist
|
|
|
|
types: NameTable<TypeKind>,
|
2021-10-19 13:48:00 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
/// A map of the Fqsn of an AST definition to a Symbol data structure, which contains
|
|
|
|
/// some basic information about what that symbol is and (ideally) references to other tables
|
|
|
|
/// (e.g. typechecking tables) with more information about that symbol.
|
2021-10-21 21:55:21 -07:00
|
|
|
fqsn_to_symbol: HashMap<Fqsn, Rc<Symbol>>,
|
2021-10-21 19:43:03 -07:00
|
|
|
|
2021-10-21 21:55:21 -07:00
|
|
|
id_to_symbol: HashMap<ItemId, Rc<Symbol>>,
|
2018-05-20 20:36:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SymbolTable {
|
2021-10-21 14:46:42 -07:00
|
|
|
pub fn new() -> SymbolTable {
|
|
|
|
SymbolTable {
|
2021-10-21 15:23:48 -07:00
|
|
|
def_id_store: DefIdStore::new(),
|
2021-10-21 14:46:42 -07:00
|
|
|
symbol_trie: SymbolTrie::new(),
|
|
|
|
fq_names: NameTable::new(),
|
|
|
|
types: NameTable::new(),
|
2021-10-21 21:55:21 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
fqsn_to_symbol: HashMap::new(),
|
2021-10-21 19:43:03 -07:00
|
|
|
id_to_symbol: HashMap::new(),
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2019-03-07 23:51:31 -08:00
|
|
|
}
|
2018-08-05 18:19:48 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
/// The main entry point into the symbol table. This will traverse the AST in several
|
|
|
|
/// different ways and populate subtables with information that will be used further in the
|
|
|
|
/// compilation process.
|
|
|
|
pub fn process_ast(&mut self, ast: &ast::AST) -> Result<(), Vec<SymbolError>> {
|
|
|
|
let errs = self.populate_name_tables(ast);
|
|
|
|
if !errs.is_empty() {
|
|
|
|
return Err(errs);
|
|
|
|
}
|
2021-10-21 15:23:48 -07:00
|
|
|
self.resolve_scopes(ast);
|
2021-10-21 14:46:42 -07:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-10-19 14:12:57 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
pub fn lookup_symbol(&self, id: &ItemId) -> Option<&Symbol> {
|
2021-10-21 21:55:21 -07:00
|
|
|
self.id_to_symbol.get(id).map(|s| s.as_ref())
|
2021-10-19 18:22:34 -07:00
|
|
|
}
|
2021-10-21 15:23:48 -07:00
|
|
|
|
2021-10-24 00:08:26 -07:00
|
|
|
//TODO optimize this
|
2021-10-21 15:23:48 -07:00
|
|
|
pub fn lookup_symbol_by_def(&self, def: &DefId) -> Option<&Symbol> {
|
|
|
|
self.id_to_symbol.iter().find(|(_, sym)| sym.def_id == *def)
|
|
|
|
.map(|(_, sym)| sym.as_ref())
|
|
|
|
}
|
2021-10-26 11:37:43 -07:00
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn debug(&self) {
|
|
|
|
println!("Symbol table:");
|
|
|
|
println!("----------------");
|
|
|
|
for (id, sym) in self.id_to_symbol.iter() {
|
|
|
|
println!("{} => {}", id, sym);
|
|
|
|
}
|
|
|
|
}
|
2018-05-20 20:36:57 -07:00
|
|
|
}
|
|
|
|
|
2021-10-13 00:53:32 -07:00
|
|
|
#[allow(dead_code)]
|
2021-10-21 21:55:21 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2018-05-20 20:36:57 -07:00
|
|
|
pub struct Symbol {
|
2021-10-21 21:55:21 -07:00
|
|
|
fully_qualified_name: Fqsn,
|
2021-10-25 13:03:31 -07:00
|
|
|
spec: SymbolSpec,
|
|
|
|
def_id: DefId,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Symbol {
|
|
|
|
pub fn local_name(&self) -> Rc<String> {
|
|
|
|
self.fully_qualified_name.local_name()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn def_id(&self) -> Option<DefId> {
|
|
|
|
Some(self.def_id.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn spec(&self) -> SymbolSpec {
|
|
|
|
self.spec.clone()
|
|
|
|
}
|
2018-05-20 20:36:57 -07:00
|
|
|
}
|
|
|
|
|
2018-06-03 23:04:07 -07:00
|
|
|
impl fmt::Display for Symbol {
|
2021-10-21 14:46:42 -07:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2021-10-26 11:37:43 -07:00
|
|
|
write!(f, "<Local name: {}, {}, Spec: {}>", self.local_name(), self.fully_qualified_name, self.spec)
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2018-06-03 23:04:07 -07:00
|
|
|
}
|
|
|
|
|
2021-10-24 02:02:04 -07:00
|
|
|
//TODO - I think I eventually want to draw a distinction between true global items
|
|
|
|
//i.e. global vars, and items whose definitions are scoped. Right now there's a sense
|
|
|
|
//in which Func, DataConstructor, RecordConstructor, and GlobalBinding are "globals",
|
|
|
|
//whereas LocalVarible and FunctionParam have local scope. But right now, they all
|
|
|
|
//get put into a common table, and all get DefId's from a common source.
|
|
|
|
//
|
|
|
|
//It would be good if individual functions could in parallel look up their own
|
|
|
|
//local vars without interfering with other lookups. Also some type definitions
|
|
|
|
//should be scoped in a similar way.
|
2021-10-24 02:54:21 -07:00
|
|
|
//
|
|
|
|
//Also it makes sense that non-globals should not use DefId's, particularly not
|
|
|
|
//function parameters (even though they are currently assigned).
|
2021-10-21 21:55:21 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2018-05-20 20:36:57 -07:00
|
|
|
pub enum SymbolSpec {
|
2021-10-25 16:12:24 -07:00
|
|
|
Func,
|
2021-10-21 14:46:42 -07:00
|
|
|
DataConstructor {
|
|
|
|
index: usize,
|
|
|
|
arity: usize,
|
2021-10-25 16:12:24 -07:00
|
|
|
type_id: TypeId,
|
2021-10-21 14:46:42 -07:00
|
|
|
},
|
|
|
|
RecordConstructor {
|
|
|
|
index: usize,
|
2021-10-25 16:12:24 -07:00
|
|
|
members: HashMap<Rc<String>, TypeId>,
|
|
|
|
type_id: TypeId,
|
2021-10-21 14:46:42 -07:00
|
|
|
},
|
2021-10-24 00:08:26 -07:00
|
|
|
GlobalBinding, //Only for global variables, not for function-local ones or ones within a `let` scope context
|
2021-10-24 02:02:04 -07:00
|
|
|
LocalVariable,
|
|
|
|
FunctionParam(u8),
|
2018-05-20 20:36:57 -07:00
|
|
|
}
|
|
|
|
|
2018-06-03 23:04:07 -07:00
|
|
|
impl fmt::Display for SymbolSpec {
|
2021-10-21 14:46:42 -07:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
use self::SymbolSpec::*;
|
|
|
|
match self {
|
2021-10-25 16:12:24 -07:00
|
|
|
Func => write!(f, "Func"),
|
2021-10-21 14:46:42 -07:00
|
|
|
DataConstructor {
|
|
|
|
index,
|
2021-10-25 16:12:24 -07:00
|
|
|
type_id,
|
2021-10-21 14:46:42 -07:00
|
|
|
arity,
|
|
|
|
} => write!(
|
|
|
|
f,
|
|
|
|
"DataConstructor(idx: {}, arity: {}, type: {})",
|
2021-10-25 16:12:24 -07:00
|
|
|
index, arity, type_id
|
2021-10-21 14:46:42 -07:00
|
|
|
),
|
|
|
|
RecordConstructor {
|
2021-10-25 16:12:24 -07:00
|
|
|
type_id, index, ..
|
2021-10-21 14:46:42 -07:00
|
|
|
} => write!(
|
|
|
|
f,
|
|
|
|
"RecordConstructor(idx: {})(<members> -> {})",
|
2021-10-25 16:12:24 -07:00
|
|
|
index, type_id
|
2021-10-21 14:46:42 -07:00
|
|
|
),
|
2021-10-24 01:00:32 -07:00
|
|
|
GlobalBinding => write!(f, "GlobalBinding"),
|
2021-10-24 02:02:04 -07:00
|
|
|
LocalVariable => write!(f, "Local variable"),
|
|
|
|
FunctionParam(n) => write!(f, "Function param: {}", n),
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2018-06-03 23:04:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-20 20:36:57 -07:00
|
|
|
impl SymbolTable {
|
2021-10-21 14:46:42 -07:00
|
|
|
/* note: this adds names for *forward reference* but doesn't actually create any types. solve that problem
|
|
|
|
* later */
|
|
|
|
|
|
|
|
/// Register a new mapping of a fully-qualified symbol name (e.g. `Option::Some`)
|
|
|
|
/// to a Symbol, a descriptor of what that name refers to.
|
2021-10-21 21:55:21 -07:00
|
|
|
fn add_symbol(&mut self, id: &ItemId, fqsn: Fqsn, spec: SymbolSpec) {
|
2021-10-25 01:02:19 -07:00
|
|
|
let def_id = self.def_id_store.fresh();
|
2021-10-21 21:55:21 -07:00
|
|
|
let symbol = Rc::new(Symbol {
|
|
|
|
fully_qualified_name: fqsn.clone(),
|
|
|
|
spec,
|
2021-10-25 01:02:19 -07:00
|
|
|
def_id,
|
2021-10-21 21:55:21 -07:00
|
|
|
});
|
2021-10-26 11:37:43 -07:00
|
|
|
println!("In add_symbol(), adding: {:?}", symbol);
|
2021-10-21 14:46:42 -07:00
|
|
|
self.symbol_trie.insert(&fqsn);
|
2021-10-21 21:55:21 -07:00
|
|
|
self.fqsn_to_symbol.insert(fqsn, symbol.clone());
|
2021-10-26 13:37:03 -07:00
|
|
|
self.id_to_symbol.insert(id.clone(), symbol);
|
2021-10-19 18:00:34 -07:00
|
|
|
}
|
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
/// Walks the AST, matching the ID of an identifier used in some expression to
|
|
|
|
/// the corresponding Symbol.
|
2021-10-21 15:23:48 -07:00
|
|
|
fn resolve_scopes(&mut self, ast: &ast::AST) {
|
|
|
|
let mut resolver = resolver::ScopeResolver::new(self);
|
2021-10-21 14:46:42 -07:00
|
|
|
resolver.resolve(ast);
|
|
|
|
}
|
2021-10-19 18:00:34 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
/// This function traverses the AST and adds symbol table entries for
|
|
|
|
/// constants, functions, types, and modules defined within. This simultaneously
|
|
|
|
/// checks for dupicate definitions (and returns errors if discovered), and sets
|
|
|
|
/// up name tables that will be used by further parts of the compiler
|
|
|
|
fn populate_name_tables(&mut self, ast: &ast::AST) -> Vec<SymbolError> {
|
|
|
|
let mut scope_stack = vec![];
|
2021-10-24 00:08:26 -07:00
|
|
|
self.add_from_scope(ast.statements.as_ref(), &mut scope_stack, false)
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-19 13:48:00 -07:00
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
fn add_from_scope<'a>(
|
|
|
|
&'a mut self,
|
|
|
|
statements: &[Statement],
|
|
|
|
scope_stack: &mut Vec<Scope>,
|
2021-10-24 00:08:26 -07:00
|
|
|
function_scope: bool,
|
2021-10-21 14:46:42 -07:00
|
|
|
) -> Vec<SymbolError> {
|
|
|
|
let mut errors = vec![];
|
|
|
|
|
|
|
|
for statement in statements {
|
|
|
|
let Statement {
|
2021-10-21 21:55:21 -07:00
|
|
|
id,
|
2021-10-21 14:46:42 -07:00
|
|
|
kind,
|
|
|
|
location,
|
|
|
|
} = statement; //TODO I'm not sure if I need to do anything with this ID
|
|
|
|
let location = *location;
|
2021-10-24 00:08:26 -07:00
|
|
|
if let Err(err) = self.add_single_statement(id, kind, location, scope_stack, function_scope) {
|
2021-10-21 14:46:42 -07:00
|
|
|
errors.push(err);
|
|
|
|
} else {
|
|
|
|
// If there's an error with a name, don't recurse into subscopes of that name
|
|
|
|
let recursive_errs = match kind {
|
|
|
|
StatementKind::Declaration(Declaration::FuncDecl(signature, body)) => {
|
|
|
|
let new_scope = Scope::Name(signature.name.clone());
|
|
|
|
scope_stack.push(new_scope);
|
2021-10-24 00:08:26 -07:00
|
|
|
let output = self.add_from_scope(body.as_ref(), scope_stack, true);
|
2021-10-21 14:46:42 -07:00
|
|
|
scope_stack.pop();
|
|
|
|
output
|
|
|
|
}
|
|
|
|
StatementKind::Module(ModuleSpecifier { name, contents }) => {
|
|
|
|
let new_scope = Scope::Name(name.clone());
|
|
|
|
scope_stack.push(new_scope);
|
2021-10-24 00:08:26 -07:00
|
|
|
let output = self.add_from_scope(contents.as_ref(), scope_stack, false);
|
2021-10-21 14:46:42 -07:00
|
|
|
scope_stack.pop();
|
|
|
|
output
|
|
|
|
}
|
|
|
|
StatementKind::Declaration(Declaration::TypeDecl {
|
|
|
|
name,
|
|
|
|
body,
|
|
|
|
mutable,
|
|
|
|
}) => self.add_type_members(name, body, mutable, location, scope_stack),
|
|
|
|
_ => vec![],
|
|
|
|
};
|
|
|
|
errors.extend(recursive_errs.into_iter());
|
|
|
|
}
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
2021-10-21 14:46:42 -07:00
|
|
|
|
|
|
|
errors
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_single_statement(
|
|
|
|
&mut self,
|
2021-10-21 21:55:21 -07:00
|
|
|
id: &ItemId,
|
2021-10-21 14:46:42 -07:00
|
|
|
kind: &StatementKind,
|
|
|
|
location: Location,
|
|
|
|
scope_stack: &[Scope],
|
2021-10-24 00:08:26 -07:00
|
|
|
function_scope: bool,
|
2021-10-21 14:46:42 -07:00
|
|
|
) -> Result<(), SymbolError> {
|
|
|
|
match kind {
|
|
|
|
StatementKind::Declaration(Declaration::FuncSig(signature)) => {
|
|
|
|
let fq_function = Fqsn::from_scope_stack(scope_stack, signature.name.clone());
|
|
|
|
self.fq_names.register(
|
|
|
|
fq_function.clone(),
|
|
|
|
NameSpec {
|
|
|
|
location,
|
|
|
|
kind: NameKind::Function,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
self.types.register(
|
|
|
|
fq_function.clone(),
|
|
|
|
NameSpec {
|
|
|
|
location,
|
|
|
|
kind: TypeKind,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
|
|
|
|
self.add_symbol(
|
2021-10-21 21:55:21 -07:00
|
|
|
id,
|
2021-10-21 14:46:42 -07:00
|
|
|
fq_function,
|
2021-10-25 16:12:24 -07:00
|
|
|
SymbolSpec::Func,
|
2021-10-21 14:46:42 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
StatementKind::Declaration(Declaration::FuncDecl(signature, ..)) => {
|
|
|
|
let fn_name = &signature.name;
|
|
|
|
let fq_function = Fqsn::from_scope_stack(scope_stack, fn_name.clone());
|
|
|
|
self.fq_names.register(
|
|
|
|
fq_function.clone(),
|
|
|
|
NameSpec {
|
|
|
|
location,
|
|
|
|
kind: NameKind::Function,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
self.types.register(
|
|
|
|
fq_function.clone(),
|
|
|
|
NameSpec {
|
|
|
|
location,
|
|
|
|
kind: TypeKind,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
|
|
|
|
self.add_symbol(
|
2021-10-21 21:55:21 -07:00
|
|
|
id,
|
2021-10-21 14:46:42 -07:00
|
|
|
fq_function,
|
2021-10-25 16:12:24 -07:00
|
|
|
SymbolSpec::Func,
|
2021-10-21 14:46:42 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
StatementKind::Declaration(Declaration::TypeDecl { name, .. }) => {
|
|
|
|
let fq_type = Fqsn::from_scope_stack(scope_stack, name.name.clone());
|
|
|
|
self.types.register(
|
|
|
|
fq_type,
|
|
|
|
NameSpec {
|
|
|
|
location,
|
|
|
|
kind: TypeKind,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
StatementKind::Declaration(Declaration::Binding { name, .. }) => {
|
|
|
|
let fq_binding = Fqsn::from_scope_stack(scope_stack, name.clone());
|
|
|
|
self.fq_names.register(
|
|
|
|
fq_binding.clone(),
|
|
|
|
NameSpec {
|
|
|
|
location,
|
|
|
|
kind: NameKind::Binding,
|
|
|
|
},
|
|
|
|
)?;
|
2021-10-24 00:08:26 -07:00
|
|
|
if !function_scope {
|
|
|
|
self.add_symbol(
|
|
|
|
id,
|
|
|
|
fq_binding,
|
|
|
|
SymbolSpec::GlobalBinding,
|
|
|
|
);
|
|
|
|
}
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
|
|
|
StatementKind::Module(ModuleSpecifier { name, .. }) => {
|
|
|
|
let fq_module = Fqsn::from_scope_stack(scope_stack, name.clone());
|
|
|
|
self.fq_names.register(
|
|
|
|
fq_module,
|
|
|
|
NameSpec {
|
|
|
|
location,
|
|
|
|
kind: NameKind::Module,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
_ => (),
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
2021-10-21 14:46:42 -07:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_type_members(
|
|
|
|
&mut self,
|
|
|
|
type_name: &TypeSingletonName,
|
|
|
|
type_body: &TypeBody,
|
|
|
|
_mutable: &bool,
|
|
|
|
location: Location,
|
|
|
|
scope_stack: &mut Vec<Scope>,
|
|
|
|
) -> Vec<SymbolError> {
|
|
|
|
let mut member_errors = vec![];
|
|
|
|
let mut errors = vec![];
|
|
|
|
|
2021-10-21 21:55:21 -07:00
|
|
|
let mut register = |id: &ItemId, fqsn: Fqsn, spec: SymbolSpec| {
|
2021-10-21 14:46:42 -07:00
|
|
|
let name_spec = NameSpec {
|
|
|
|
location,
|
|
|
|
kind: TypeKind,
|
|
|
|
};
|
|
|
|
if let Err(err) = self.types.register(fqsn.clone(), name_spec) {
|
|
|
|
errors.push(err);
|
|
|
|
} else {
|
2021-10-21 21:55:21 -07:00
|
|
|
self.add_symbol(id, fqsn, spec);
|
2021-10-21 14:46:42 -07:00
|
|
|
};
|
2021-10-19 13:48:00 -07:00
|
|
|
};
|
2021-10-21 14:46:42 -07:00
|
|
|
|
|
|
|
let TypeBody(variants) = type_body;
|
|
|
|
let new_scope = Scope::Name(type_name.name.clone());
|
|
|
|
scope_stack.push(new_scope);
|
|
|
|
|
|
|
|
for (index, variant) in variants.iter().enumerate() {
|
2021-10-21 20:00:26 -07:00
|
|
|
let Variant { name, kind, id } = variant;
|
2021-10-25 16:12:24 -07:00
|
|
|
let type_id = TypeId::lookup_name(name.as_ref());
|
|
|
|
|
2021-10-21 19:53:50 -07:00
|
|
|
match kind {
|
|
|
|
VariantKind::UnitStruct => {
|
2021-10-21 14:46:42 -07:00
|
|
|
let fq_name = Fqsn::from_scope_stack(scope_stack.as_ref(), name.clone());
|
|
|
|
let spec = SymbolSpec::DataConstructor {
|
|
|
|
index,
|
|
|
|
arity: 0,
|
2021-10-25 16:12:24 -07:00
|
|
|
type_id,
|
2021-10-21 14:46:42 -07:00
|
|
|
};
|
2021-10-21 21:55:21 -07:00
|
|
|
register(id, fq_name, spec);
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-21 19:53:50 -07:00
|
|
|
VariantKind::TupleStruct(items) => {
|
2021-10-21 14:46:42 -07:00
|
|
|
let fq_name = Fqsn::from_scope_stack(scope_stack.as_ref(), name.clone());
|
|
|
|
let spec = SymbolSpec::DataConstructor {
|
|
|
|
index,
|
|
|
|
arity: items.len(),
|
2021-10-25 16:12:24 -07:00
|
|
|
type_id,
|
2021-10-21 14:46:42 -07:00
|
|
|
};
|
2021-10-21 21:55:21 -07:00
|
|
|
register(id, fq_name, spec);
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-21 19:53:50 -07:00
|
|
|
VariantKind::Record(members) => {
|
2021-10-21 14:46:42 -07:00
|
|
|
let fq_name = Fqsn::from_scope_stack(scope_stack.as_ref(), name.clone());
|
|
|
|
|
|
|
|
let mut seen_members = HashMap::new();
|
|
|
|
for (member_name, _) in members.iter() {
|
|
|
|
match seen_members.entry(member_name.as_ref()) {
|
|
|
|
Entry::Occupied(o) => {
|
|
|
|
let location = *o.get();
|
|
|
|
member_errors.push(SymbolError::DuplicateRecord {
|
|
|
|
type_name: fq_name.clone(),
|
|
|
|
location,
|
|
|
|
member: member_name.as_ref().to_string(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
//TODO eventually this should track meaningful locations
|
|
|
|
Entry::Vacant(v) => {
|
|
|
|
v.insert(Location::default());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let spec = SymbolSpec::RecordConstructor {
|
|
|
|
index,
|
2021-10-25 16:12:24 -07:00
|
|
|
type_id,
|
2021-10-21 14:46:42 -07:00
|
|
|
members: members
|
|
|
|
.iter()
|
2021-10-25 16:12:24 -07:00
|
|
|
.map(|(member_name, _type_identifier)| {
|
2021-10-21 14:46:42 -07:00
|
|
|
(
|
2021-10-25 16:12:24 -07:00
|
|
|
member_name.clone(),
|
|
|
|
TypeId::lookup_name("DUMMY_TYPE_ID"),
|
2021-10-21 14:46:42 -07:00
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect(),
|
|
|
|
};
|
2021-10-21 21:55:21 -07:00
|
|
|
register(id, fq_name, spec);
|
2021-10-21 14:46:42 -07:00
|
|
|
}
|
2021-10-19 20:35:53 -07:00
|
|
|
}
|
2021-10-18 21:56:48 -07:00
|
|
|
}
|
|
|
|
|
2021-10-21 14:46:42 -07:00
|
|
|
scope_stack.pop();
|
|
|
|
errors.extend(member_errors.into_iter());
|
|
|
|
errors
|
|
|
|
}
|
2019-01-20 00:22:35 -08:00
|
|
|
}
|