40

Mjs – An interpreter for ECMAScript 1st edition written in C++17

 5 years ago
source link: https://www.tuicool.com/articles/hit/6VjEZnZ
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

mjs

Introduction

mjs is an interpreter for ECMAScript 1st edition (a.k.a. Javascript 1997) written in C++17. It was written as a hobby project for the purpose of gaining a better understanding of how Javascript actually works. As such it doesn't strive to be neither fast, secure nor particularly beautiful. In fact some things are downright terribly implemented. Also no real programs were actually tested.

Most of ES1 should be implemented (to some degree...), but see the TODO file for details. Also be aware that you probably haven't programmed in ES1 before and will find most modern conveniences (e.g. array and object literals) missing from the specification.

Building

You need a modern C++ compiler that supports C++17 and CMake 3.7 or later. It has currently been tested with the following compilers:

  • Visual C++ 2017 15.8.8 on Windows 10
  • GCC 7.1.0 (x64 distribution from Stephan T. Lavavej ) on Windows 10
  • GCC 8.2.0 (on x64 Linux, Debian testing as of October 2018)

To run the tests build the "check" target.

The interpreter is built in the "src" directory. It accepts a Javascript file on the command line or starts in REPL mode if no argument is given.

These steps should work for most people:

mkdir build
cd build
cmake .. # Here you may want use e.g. CXX=g++-8 cmake ..
cmake --build .
cmake --build . --target check

Support

Forget about it :). Feel free to raise an issue on Github, but don't expect anything to come of it.


Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK