Interpreter and compiler implemented in modern C++ for the lox programing language described in Crafting Interpreters with extensions in grammars and other features.
In a long run, this project will support JIT and JIT-based run time optimizations.
This project is built with
- MSVC 17.0
- CMAKE, 3.19 and above.
Note: C++20 support of compilers, especially support for std::format
and concepts are required for compiling most of the codes. Now, only Visual Studio 16.9 and above are known to support them all. And LLVM 13 may work because it claims its test formatting features are "In progress". Also for this reason, only releases for Windows is provided for the present.
A bare clox
to enter REPL mode.
Or with the following arguments:
Shorthand | Full | Description | Default |
---|---|---|---|
-h | --help | shows help message and exits | false |
-v | --version | prints version information and exits | false |
-f | --file | the script to run_code | "" |
-a | --classic | Use classic (tree-walker) interpreter instead of bytecode virtual machine | false |
-t | --show-ast | Show AST structure | false |
-d | --show-assembly | Show assembly code | false |
-vd | --verbose-debug | Verbose debug output. | false |
-t | --time-statistic | Show time statistic like the runtime, compile time, etc. | false |
Naive CLOX | Typed CLOX | CLOXc | Future CLOX |
---|---|---|---|
✅ Basic language features Release: First preview version of clox interpreter |
✅ Extended language features (Mainly OOP) ✅ Unit test coverage ✅ Refined REPL experience |
✅ Make CLOX a static-typed language. ✅ Compile Typed-CLOX to bytecode ✅ Virtual machine for the bytecode ✅ Basic mark-sweep garbage collecting ❌ LOX standard library |
🔄 Support Interfaces or prototypes 🔄 Builtin arrays and maps 🔄 Advanced GC ❌ Generic programming |
✅ Supported | 🔄 In progress | ❌ In plan
To extend the language and equip it with type system, several changes in grammar are made.
Feature | Status |
---|---|
Primitive types like integer |
✅ |
Class types | ✅ |
Basic type checking | ✅ |
Union type and nullable type | 🔄 |
Checks for nullability | ❌ |
Variables should be either declared with a type, or initialized by a type-deducible initializer:
var val1:integer;
var val2=1+1;
Functions and Methods should be either declared with a type, or simple enough for return type to be deduced. All parameters, unlike variables, should be declared with a type.
A common situation where return type is impossible to be deduced is that a recursive call appear before any return
statement.
fun hello() // type deduced: void
{
print "hello";
}
fun hello2(a:integer) // type deduced: integer
{
return a+2*a;
}
fun fib(a:integer) // type deduced: integer
{
if(a==1 or a==2)
{
return 1;
}
return fib(a-1)+fib(a-2);
}
fun too_complex(d:integer) // ERROR: too complex for return type deducing
{
if(d==10)
{
print "fin";
}
too_complex(d+1);
}
Now, methods, operator methods and variables can appear in class declaration. Unlike original LOX language, a new keyword, constructor
is introduced to define a constructor. Furthermore, keyword operator
is introduced to define operator methods. Note that not every operator can be defined by it.
Another key different is that fun
keyword is now required for methods.
class Person {
var name:string;
constructor(n:string) {
this.name=n;
}
constructor(n1:string,n2:string) {
this.name=n1+" "+n2;
}
fun sayName() {
print this.name;
}
fun sayName(attach:string) {
var msg=this.name+" "+attach;
print msg;
}
operator==(another:Person):boolean {
return this.name==another.name;
}
}
Here is a hand-on quick instruction. Refer to Documentation for extended LOX language (not exist yet) for details.
var a=10; // it's a variable
a=20; // variable can be reassigned
var a=10;
print a; // 10
print a=20; // 20, a's value will be 20 afterwards.
// TODO
Contributions are what make the open source community such an amazing place to be learned, inspire, and create_on_heap. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Furthermore, you are welcomed to:
- Ask a question
Also, have a look at our FAQs. - Start a discussion
Discussions can be about any topics or ideas related to CLOX. - Make a feature proposal
Language features do you want to appear or not to appear in CLOX? For example, you can propose a new grammar making the lox better, or an idea for library features.
Copyright (c) 2021 SmartPolarBear
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.