JavaScript engine development book or article

im looking for a book to learn more about the development of the JavaScript engine (if it exists), I would appreciate any information on this topic, thanks in advance.

- Or any articles about Javascript Engine development! :)

+4
source share
2 answers

This is not C ++, but here is Douglas Crockford's article on building a simplified Javascript analyzer with Javascript.

However, he explains that the parser methodology is more (only?) Suitable for functional languages ​​and will not work in procedural languages ​​(e.g. C ++).

However, he discusses a number of aspects of the implementation of the JS parser, which may point you in some directions.

There are a number of reports about building a JS interpreter in Python.

There is also a php Javascript parser and tokenizer.

+2
source

The open source V8 Javascript engine, written by Google and used in Chrome, is here , and you can find out a ton from learning this.

I rather doubt that you will find a book on this subject, and I do not know about it.

+5
source

Source: https://habr.com/ru/post/1386618/


All Articles