2.0.2 • Published 4 years ago

solidity-pegjs-parser v2.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Solidity PEGJS Grammar Parser

npm solidity-pegjs-parser

Abstract

This takes solidity-parser-sc (npm package) and updates it and also provides a GitHub repository, as there is no repository listed under NPM. Nor is it actually maintained.

Overview

original consensys/solidity-parser with additional project specific grammar rules

For code analysis of processing systems that pre-processing to deploy or run their tests.

Updates to Grammar

A full list can be found under the DIFF.md document here

 HexStringLiteral
-  = HexToken StringLiteral
+  = HexToken val:StringLiteral {
+    return {
+      type: "HexLiteral",
+      value: val,
+      start: location().start.offset,
+      end: location().end.offset
+    };
+  }

License

ISC / MIT

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago