Skip to content

Latest commit

 

History

History
122 lines (95 loc) · 2.45 KB

README.md

File metadata and controls

122 lines (95 loc) · 2.45 KB

Solidity PEGJS Grammar Parser

nodejs

GitHub Source

npm solidity-pegjs-parser

Abstract

$ npm install pegis-solidity

Ideal for AST use-cases

Overview

pegis-solidity

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

Usage

import { solidityparser } from "pegis-solidity"

command line

$ ./node_modules/.boin/pegis-solidity $PWD/file_name.js

Example

Consider this solidity code as input:

import "Foo.sol";

contract MyContract {
  mapping (uint => address) public addresses;
}

Generated output as AST output:

{
  "type": "Program",
  "body": [
    {
      "type": "ImportStatement",
      "value": "Foo.sol"
    },
    {
      "type": "ContractStatement",
      "name": "MyContract",
      "is": [],
      "body": [
        {
          "type": "ExpressionStatement",
          "expression": {
            "type": "DeclarativeExpression",
            "name": "addresses",
            "literal": {
              "type": "Type",
              "literal": {
                "type": "MappingExpression",
                "from": {
                  "type": "Type",
                  "literal": "uint",
                  "members": [],
                  "array_parts": []
                },
                "to": {
                  "type": "Type",
                  "literal": "address",
                  "members": [],
                  "array_parts": []
                }
              },
              "members": [],
              "array_parts": []
            },
            "is_constant": false,
            "is_public": true
          }
        }
      ]
    }
  ]
}
var SolidityParser = require("pegis-solidity")

// Parse Solidity code as a string:
var result = SolidityParser.parse("contract { ... }")

// Or, parse a file:
var result = SolidityParser.parseFile("./path/to/file.sol")

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