This is a continuation of The AIM Project series, so if you haven't read the introductory post, then take a time to do that.
So, let's start this ...
For further actions, you may consider blocking this person and/or reporting abuse
From a language design perspective the syntax is a bit odd, but the concept of advanced type pique my interest. Is AIM inspired by any other languages?
I know it is a bit odd but not much. Anyway it's meant to be this way. As for inspiration, not in obvious manner, mainly JavaScript and C++ I think. But its mostly whole new language.
I wonder you mentioned in the doc about how advanced types could be combined to represent class and interface. Have you thought about that through? For instance, how would you represent methods with a block and refer to itself in the receiver (i.e.
this
)? How would you represent a collection of methods for interfaces?At the start - I'm sorry if I haven't understood you correctly. So, you're meant to be able to access something like
this
with context modifier..
. As for the other one, I think an example might be the best way of showcasing it.Now, that's the basic idea but I understand your concerns. It's all in early stages with me writing the lexer right now. The syntax might change (even drastically) until I finish work on the parser, so yeah. Of course, I'm open-minded and welcome any ideas.
No worries, I'm interested in your design of advanced types, though I'm not sure where they're headed. It's a fresh approach on programming language complexity at this point. Obviously, modern languages tend to not priority class-based OOP (Rust and Go).
According to your idea, is it possible to define advanced types and compose them later, something maybe like this:
Excuse me if I didn't get it right, but hope the idea went across.
That's mostly right, you just didn't get the way to bind advanced types. It's like you have created something like 3 runners.
The correct way to do this is by using bind modifier for binding advanced types variables - they're not needed for static values.
It also applies everywhere else in the code. Aside from that, everything is just right.
That's interesting, though
=>
might be confusing since it's used quite differently from other languages like JS or Ocaml, which is a construct for lambdas. (Ocaml actually uses->
). Moreover, it wouldn't make sense to do something like this:Or is that valid AIM too? How would the two blocks work in this way? Would the second one be a nested block of the first?
Hm, that's a good question. Most likely not as only different advanced types should be bonded with blocks. As for the syntax, it's inspired by JS arrow function.
Exactly, but JS arrow function syntax actually has a deep root in lambda calculus and functional programming. For instance, in Ocaml, a lambda function can be defined as such:
Familiar?
=>
or->
has the definition of referential transparent mapping, meaning it maps a valuen
ton + 1
. This makes it possible to curry indefinitely:Same thing in JS.
In Rust, a block statement, interesting enough, takes cue from Ruby.
Point is I think it would be confusing to use the arrow for this type of composition. What AIM is doing with advanced types are macro-level thing, changing the syntactical meaning. That's why it piqued my interest in the first place. A language with macro built-in.
Naturally, I would expect advanced types to play out like this, if arrow was to be used:
Of course to make it less ambiguous you could come up with a totally new symbol and I think it would totally be justified since what AIM is doing here is not mapping a function to its application.
Good job on the design. It feels like a fun language to hack in.
Good to hear that you're interested in the project! Anyway, it's most likely that many decisions will be made at the time of finishing the parser. Even if, you've given me quite a rethink on this actually. 😅
I'd be great if you could keep refining the design as well. When the design is solid, anyone could implement it in anything.
I'm interested with this project. This looks good.
My question, what would you use for the Lexer, and the parser? Have you thought about what you will use? If not, I recommend use moo for the lexer and for nearley or jison parsers. Personally I like nearley more because it's easier.
Or, maybe you want to create your own? Thanks.
By this moment I explored only Jison, but thanks for other suggestions. Most likely I try to do my own.
I know @areknawo is interested in writing a compiler in JS or TS, but something to look at is ReasonML, which is a JS-like language over Ocaml, a very nice parser language.
>>
for comments is very odd since it is already a mathematical operator.See: developer.mozilla.org/en-US/docs/W...
Yeah, I have changed all bytewise operators by preceding them with & e.g.
&>>
or&|
. This is coming to the syntax repo soon. Anyway, still thinking about the design tho. I think this is good enough.