Coder Social home page Coder Social logo

language-tools's Introduction

language-tools

Overview

language-tools is a repository of an assortment of partial compiler implementations in many different languages.

C

C Lexer

For C, there is an implementation of a functioning Lexer which stores the tokens in a Doubly-Linked List.

C Parser

However, the parser is not complete at all.

Result Struct

To make the Lexer and Parser more flexible and not fail immediately, I use a Result struct which not only stores data but also the success state.

// Example of NameResult
typedef struct nameResult
{
    Data *data;
    State state;
} NameResult;

TypeScript (TS)

TS Lexer

The Lexer is a complete framework based on Microsoft's Monaco Editor.

The Lexer works by taking in an array of Lexemes, some of which are precoded in the class, and an input string which to return an array of tokens.

Lexemes are defined by a condition function cond to produce a token with the lex function. require is whether to include the token type in the final token list.

export type Lexeme = {
    cond: (c: string) => boolean;
    lex: (src: string, i: number) => Token;
    require: boolean;
};

There are also precoded helper functions in the class which can be used for the Lexeme property cond.

The class is fully customizable by extending the class and overwriting Lexemes and Functions.

TS Parser

The Parser is incomplete.

TS Runner

The Runner runs the Lexer and Parser.

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.