Skip to content

Commit

Permalink
docs: fix wrong fallbak.md link (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
beautiful-boyyy authored Dec 21, 2023
1 parent 04bea5f commit 3e3e1a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/developer-guide/basic_concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ As shown in the graph above, the fundamental processing principles for different
- `user defined interface` is widely used in TypeScript, treating it as dynamic will largely influence the performance, so we introduced `meta` to apply static compilation
- `builtin objects` are objects provided by JavaScript runtime, TypeScript defines them as interface for type checking purpose.

- Implementing these built-in objects demands a significant amount of effort, so we treat them as `any` by default, this allows us to immediately use the standard library implementation already available in external environment. (see [fallback](../fallback.md))
- Implementing these built-in objects demands a significant amount of effort, so we treat them as `any` by default, this allows us to immediately use the standard library implementation already available in external environment. (see [fallback](./fallback.md))

- Simultaneously, we are working on static compilation solutions for selected built-in objects (e.g. `String`, `Array`) to improve performance. The priority of static compilation for these objects is determined based on their actual usage frequency.

Expand Down

0 comments on commit 3e3e1a9

Please sign in to comment.