• Latest
Implementing PEG in JavaScript – DZone

Implementing PEG in JavaScript – DZone

March 13, 2023
MAINO ACCUSED OF WEARING TROY AVE’S FAKE CHAIN FOR VIDEO SH00T! PLUS MORE! 🤯 #ShowfaceNews

MAINO ACCUSED OF WEARING TROY AVE’S FAKE CHAIN FOR VIDEO SH00T! PLUS MORE! 🤯 #ShowfaceNews

April 2, 2023
🤩 Oppo Find X6 Pro: The Fastest Android Phone Yet? 🚀 #shorts #oppofindx6pro

🤩 Oppo Find X6 Pro: The Fastest Android Phone Yet? 🚀 #shorts #oppofindx6pro

April 2, 2023
The Tragic Tale of Jackie Chan's Son

The Tragic Tale of Jackie Chan's Son

April 2, 2023
#Chutkula #comedy #funny #jokes #trending #new #viral #shortjokes #Shorts #ytshorts #comedyclub

#Chutkula #comedy #funny #jokes #trending #new #viral #shortjokes #Shorts #ytshorts #comedyclub

April 2, 2023
This GENIUS Youtube Advice Will Change EVERYTHING!

This GENIUS Youtube Advice Will Change EVERYTHING!

April 2, 2023
1 апреля 2023 г.

1 апреля 2023 г.

April 2, 2023
Factors that have contributed to Marques Brownlee’s success? #shorts #marquesbrownlee

Factors that have contributed to Marques Brownlee’s success? #shorts #marquesbrownlee

April 2, 2023
Weekly poll results: Oppo Find X6 and Find X6 Pro get the thumbs up from fans

Weekly poll results: Oppo Find X6 and Find X6 Pro get the thumbs up from fans

April 2, 2023
Marques Brownlee Talks to Simone Giertz About her Tesla Truck

Marques Brownlee Talks to Simone Giertz About her Tesla Truck

April 2, 2023
iPad OS Impressions: They Listened!

iPad OS Impressions: They Listened!

April 2, 2023
Random: Bitmap Is Bringing Xeno Crisis To N64 And GameCube

Random: Bitmap Is Bringing Xeno Crisis To N64 And GameCube

April 2, 2023

The Voice Assistant Battle! (2023)

April 2, 2023
Advertise with us
Sunday, April 2, 2023
Bookmarks
  • Login
  • Register
GetUpdated
  • Game Updates
  • Mobile Gaming
  • Playstation News
  • Xbox News
  • Switch News
  • MMORPG
  • Game News
  • IGN
  • Retro Gaming
  • Tech News
  • Apple Updates
  • Jailbreak News
  • Mobile News
  • Software Development
  • Photography
  • Contact
No Result
View All Result
GetUpdated
No Result
View All Result
GetUpdated
No Result
View All Result
ADVERTISEMENT

Implementing PEG in JavaScript – DZone

March 13, 2023
in Software Development
Reading Time:3 mins read
0 0
0
Share on FacebookShare on WhatsAppShare on Twitter


Parsing is an age-old technique used to analyze and extract meaning from languages (both natural and programming). Parser is a type of compiler that converts the stream of text into syntax or parse tree that conforms to some predefined grammar rules.

There are various classifications to categorize these techniques, and plenty of content is available to explain them. So, for now, I am focusing on Parser Expression Grammar (which is the most recent research in parsing grammar). Also, I will try to explain the ways to implement a PEG parser.

What Is PEG (Parser Expression Grammar)?

Parser Expression Grammar (PEG) is the formal grammar that defined a set of recursive rules under the family of top-down parsing language. Its parsers generate an explicitly single parse tree for any input. It is more powerful than regular expressions but might have some performance drawbacks related to memory and time in a few scenarios.

Advantages of Using PEG Parsers

PEG parsers have some advantages over other types of parsers. Most noticeably, they are unambiguous as they choose the first option among choices. Also, it is scanner less, which means it does not require a separate lexing phase. That makes it easier to implement for parsing needs that have smaller usability than that is required to parse a variety of inputs in an enterprise use case.

Understanding the PEG Structure

Let’s try to understand the PEG structure with the following basic example that can be used for parsing arithmetic expressions.

start
  = additive

additive
  = left:multiplicative "+" right:additive 
  / multiplicative

multiplicative
  = left:primary "*" right:multiplicative 
  / primary

primary
  = integer
  / "(" additive:additive ")"

integer "integer"
  = digits:[0-9]+

Here, all the rules are recursive and drill down to literals or character classes with regular expressions. As we can see, an `additive` expression is an expansion of a `multiplicative` expression, and a `multiplicative` expression expands to an integer literal or nested additive expression. The integer literal is one or many occurrences of digits.

QuickStart

The quickest way to write or generate a PEG parser in javascript is to use pegjs. It is the most popular (as per GitHub) library to implement PEG parsers. You can refer to the official documentation for installation instructions. It supports both CLI and API modes for generating the parser.

Command Line

pegjs -o arithmetics-parser.js arithmetics.pegjs

JavaScript API

var peg = require("pegjs");

var parser = peg.generate("start = ('a"https://dzone.com/"b')+");

Online Tool

Apart from these modes, there is an online mode available that allows you not only to validate your grammar but also allows you to quickly test with sample inputs. Once you are done with testing, you can generate your parser on the fly with a speed or a code-optimized version.

Online Tool

Using the Parser

The generated parser can be used in both node and browser environments. You can call the `parse` method with test input, and it will either return a parse tree or an error ( for invalid inputs).

parser.parse("abba"); // returns ["a", "b", "b", "a"]

parser.parse("abcd"); // throws an exception

Sample Implementation

There is plenty of tools and services that use it in some or another way. The most update to date and advanced implementation is node-sql-parser (built by Zhi Tao). This is a pool of parsers for various modern query languages for databases like BigQuery, Hive, and Flink.



Source link

ShareSendTweet
Previous Post

How I Met Marques Brownlee at his Pro Ultimate Game

Next Post

LG Wing: The Swiveling Smartphone!

Related Posts

How To Perform Sentiment Analysis and Classification on Text (In Java)

April 1, 2023
0
0
How To Perform Sentiment Analysis and Classification on Text (In Java)
Software Development

In much the same way mutual empathy defines the development of long-term relationships with our friends, it also plays a...

Read more

Dependency Poker for Scrum Teams

April 1, 2023
0
0
Dependency Poker for Scrum Teams
Software Development

Dependency Poker is an Agile game — similar to planning poker — that enables teams to identify and manage dependencies in...

Read more
Next Post
LG Wing: The Swiveling Smartphone!

LG Wing: The Swiveling Smartphone!

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

© 2021 GetUpdated – MW.

  • About
  • Advertise
  • Privacy & Policy
  • Terms & Conditions
  • Contact

No Result
View All Result
  • Game Updates
  • Mobile Gaming
  • Playstation News
  • Xbox News
  • Switch News
  • MMORPG
  • Game News
  • IGN
  • Retro Gaming
  • Tech News
  • Apple Updates
  • Jailbreak News
  • Mobile News
  • Software Development
  • Photography
  • Contact

Welcome Back!

Login to your account below

Forgotten Password? Sign Up

Create New Account!

Fill the forms bellow to register

All fields are required. Log In

Retrieve your password

Please enter your username or email address to reset your password.

Log In
Are you sure want to unlock this post?
Unlock left : 0
Are you sure want to cancel subscription?