Skip to content

Commit 6b4ed15

Browse files
committed
More links removed
1 parent 6198f86 commit 6b4ed15

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_posts/2025-09-02-symbolic-of-what.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ To finish of this code, some brief comments on a few of the auxiliary methods me
263263
`Compiler.RegisterVar` is similar. It just notes the reference to the `Var` in the containing function (if there is one). A field in the class implementing the function will be created and initialized to the `Var` in question.
264264

265265
Looking up types corresponding to names is done in `HostExpr.MaybeType` and `HostExpr.MaybeArrayType`.
266-
I've written about these in [Are you my type?]({{site.baseurl}}{% post_url 2025-03-01-are-you-my-type }).
266+
I've written about these in __Are you my type?__.
267267

268268
## I'm feeling a little testy
269269

_posts/2025-09-03-iseq-clarity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The following special cases are handled:
9494
- we are not in an 'evaluation context' (more on that some other day).
9595
- the `Var` is not marked as dynamic, does not have metatdata `:redef` = true, and does not have metadata ':declared' = true
9696
- The Var is bound to a class that has an `invokeStatic` method with a matching number of arguments
97-
I discussed static invocation in another blog post, [The function of naming; the naming of functions]({{site.baseurl}}{% post_url 2025-02-28-function-naming }). It also will be discussed in __C4: Functional anatomy__.
97+
I discussed static invocation in another blog post, __The function of naming; the naming of functions__. It also will be discussed in __C4: Functional anatomy__.
9898

9999
- primitive invocation. We create an AST node of type `InstanceMethodExpr` to invoke the `.invokePrim` method of the function. The conditions are:
100100
- `fexpr` is a `VarExpr`

_posts/2025-09-04-functional-anatomy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ to bypass the usual dynamic dispatch that does a lookup of the current value of
302302

303303
When these conditions are met, for each `invoke` the function defines, there will be a `staticInvoke` method of the same arity with the actual function definition. The `invoke` just calls the `staticInvoke` of the same arity.
304304

305-
I provide more detail on some of the issues of static linking in a previous post outside this series: [The function of naming; the naming of functions]({{site.baseurl}}{% post_url 2025-02-28-function-naming }).
305+
I provide more detail on some of the issues of static linking in a previous post outside this series: __The function of naming; the naming of function__.
306306

307307
## Primitive urges
308308

0 commit comments

Comments
 (0)