Usually I don't write comments for the videos, but this one is really helpful. So I would like to tell: Thank you for this!
@newlinedotco11 ай бұрын
Glad it was helpful!
@iyar220 Жыл бұрын
I'm learning how to build compilers, and I was a bit lost at the subject of context-free grammars and ASTs, thanks for helping to clear that up!
@ayush6122 жыл бұрын
Thank you sir for creating this unique video and in such depth ... Thank you and such an awesome presentation and quality!
@newlinedotco2 жыл бұрын
You are welcome! Thanks for the kind words. We are glad you enjoyed this.
@James-z6x3u3 ай бұрын
Great video. Learning this for GraphQL introspection parsing of nested fields and arguments.
@AzadBilge13372 ай бұрын
I am building a website editor. Any change in blocks data structure forces me to change the all templates data by hand. Thats why i am researching how AST works and how to build for my application. You began to the video with examples that exactly fit my situation
@a.v79983 ай бұрын
Very interesting video! I love these kind of videos!
@abdullahahmed84682 жыл бұрын
really that's amazing and a lot of useful concepts and tools and examples. Thank you so much.
@newlinedotco2 жыл бұрын
Yes, we are glad you liked it!
@ocsilentwolf7805 Жыл бұрын
Thank you this will help me in my next project
@newlinedotco Жыл бұрын
Great! So glad to hear this.
@hamidmouad8292 жыл бұрын
22:07 const rootNode = parse(code).program.body[0].expression; function traverse(node) { if (!node) { return; } if (node.type === "NumericLiteral") { console.log(node.value); } if (node.left) { traverse(node.left); } if (node.right) { traverse(node.right); } } traverse(rootNode);
@newlinedotco2 жыл бұрын
thanks
@ithsigma3 ай бұрын
Thank you very much!
@ahmedsaka9648 Жыл бұрын
This is great tutorial
@vasilygerrans2 жыл бұрын
Excellent video! Thank you
@newlinedotco2 жыл бұрын
Thanks! We are glad you enjoyed this.
@manjurulislamkhan4722 Жыл бұрын
Brilliant explanation
@newlinedotco Жыл бұрын
Glad you liked it!
@sambacarlson Жыл бұрын
This is amazing.
@newlinedotco Жыл бұрын
Awesome! We are glad this was helpful.
@王土达-b2z2 жыл бұрын
thank you
@newlinedotco2 жыл бұрын
You're welcome!!
@thatisuday Жыл бұрын
Awesome video, keep it up 😄
@newlinedotco Жыл бұрын
Thanks 😁
@solitarywayfarer86932 жыл бұрын
How can I generate AST for C source code using C++ language? Please suggest me something.
@newlinedotco2 жыл бұрын
This course was produced for JavaScript, but the theory/principles should carry to most other languages/tools. Our Discord server is a great resource to connect with others. You can join us here: discord.com/invite/D88ppSb
@dikhyantkrishnadalai64222 жыл бұрын
Thank you It was helpful
@newlinedotco2 жыл бұрын
Awesome! We are glad that you enjoyed this.
@easycomputerscience692 жыл бұрын
Can any one tell AST for java programs
@newlinedotco2 жыл бұрын
This course is aimed at JavaScript, but the theory/principles should carry to most other languages/tools. With that focus, I don't have a specific tool recommendation but maybe google/stack overflow could help point you toward the right tools.