GithubHelp home page GithubHelp logo

blancoapexparser's Introduction

blancoApexParser

Lexical Parser for Apex language written in Java.

usage

Prepare *.cls file as input.

@isTest
public without sharing class MySimpleTest {
    static testMethod void testMain001() {
        System.assert(false, 'First hello word written in Apex, as a error of test code.');
    }
}

Run Apex rexical parser.

final List<BlancoApexToken> result = new BlancoApexParser()
    .parse(new File("./test/data/apex/MySimpleTest.cls"));

for (BlancoApexToken lookup : result) {
    System.out.println(lookup.getDisplayString());
}

Result is like below.

SPECIAL_CHAR[@]
WORD[isTest]
NEWLINE[n]
WORD[public]
WHITESPACE[ ]
WORD[without]
WHITESPACE[ ]
WORD[sharing]
WHITESPACE[ ]
WORD[class]
WHITESPACE[ ]
WORD[MySimpleTest]
WHITESPACE[ ]
SPECIAL_CHAR[{]
NEWLINE[n]
WHITESPACE[    ]
WORD[static]
WHITESPACE[ ]
WORD[testMethod]
WHITESPACE[ ]
WORD[void]
WHITESPACE[ ]
WORD[testMain001]
SPECIAL_CHAR[(]
SPECIAL_CHAR[)]
WHITESPACE[ ]
SPECIAL_CHAR[{]
NEWLINE[n]
WHITESPACE[        ]
WORD[System]
SPECIAL_CHAR[.]
WORD[assert]
SPECIAL_CHAR[(]
WORD[false]
SPECIAL_CHAR[,]
WHITESPACE[ ]
LITERAL(STRING)['First hello word written in Apex, as a error of test code.']
SPECIAL_CHAR[)]
SPECIAL_CHAR[;]
NEWLINE[n]
WHITESPACE[    ]
SPECIAL_CHAR[}]
NEWLINE[n]
SPECIAL_CHAR[}]
NEWLINE[n]

LICENSE

/*
 * Copyright 2016 Toshiki Iga
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

Misc

mvn archetype:generate -DgroupId=jp.igapyon.blanco.apex.parser -DartifactId=BlancoApexParser -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

blancoapexparser's People

Contributors

igapyon avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.