Skip to content

Commit

Permalink
fastn-type -> fastn-resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
amitu committed Nov 20, 2024
1 parent 0bcb62a commit cd94a1a
Show file tree
Hide file tree
Showing 131 changed files with 5,512 additions and 5,213 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
"fastn-js",
"fastn-lang",
"fastn-package",
"fastn-type",
"fastn-resolved",
"fastn-update",
"fastn-utils",
"fbt",
Expand Down Expand Up @@ -91,7 +91,7 @@ enum-iterator-derive = "0.6"
fastn-ds.path = "fastn-ds"
fastn-update.path = "fastn-update"
fastn-builtins.path = "fastn-builtins"
fastn-type.path = "fastn-type"
fastn-resolved.path = "fastn-resolved"
fastn-core.path = "fastn-core"
fastn-issues.path = "fastn-issues"
fastn-package.path = "fastn-package"
Expand Down
8 changes: 4 additions & 4 deletions design/new-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pub enum AST {
pub struct Document {
pub data: indexmap::IndexMap<String, ftd::interpreter::Thing>,
pub name: String,
pub tree: Vec<fastn_type::Component>,
pub tree: Vec<fastn_resolved::Component>,
pub aliases: ftd::Map<String>,
pub js: std::collections::HashSet<String>,
pub css: std::collections::HashSet<String>,
Expand Down Expand Up @@ -264,7 +264,7 @@ pub struct InterpreterState {
pub to_process: ToProcess,
pub pending_imports: PendingImports,
pub parsed_libs: ftd::Map<ParsedDocument>,
pub instructions: Vec<fastn_type::Component>,
pub instructions: Vec<fastn_resolved::Component>,
}

pub enum Interpreter {
Expand Down Expand Up @@ -294,7 +294,7 @@ pub enum Interpreter {
pub struct Document {
pub data: indexmap::IndexMap<String, ftd::interpreter::Thing>,
pub name: String,
pub tree: Vec<fastn_type::Component>,
pub tree: Vec<fastn_resolved::Component>,
pub aliases: ftd::Map<String>,
pub js: std::collections::HashSet<String>,
pub css: std::collections::HashSet<String>,
Expand All @@ -305,7 +305,7 @@ pub struct Component {
pub name: String,
pub properties: Vec<Property>,
pub iteration: Box<Option<Loop>>,
pub condition: Box<Option<fastn_type::Expression>>,
pub condition: Box<Option<fastn_resolved::Expression>>,
pub events: Vec<Event>,
pub children: Vec<Component>,
pub source: ComponentSource,
Expand Down
2 changes: 1 addition & 1 deletion fastn-builtins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ homepage.workspace = true
regex.workspace = true
indexmap.workspace = true
itertools.workspace = true
fastn-type.workspace = true
fastn-resolved.workspace = true
Loading

0 comments on commit cd94a1a

Please sign in to comment.