Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

[WIP] Rust implementation of (a subset of) Java compiler

NotificationsYou must be signed in to change notification settings

cnguy/mini-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

class Test {    void main() {        writeInt(factorial(12));    }    int factorial(int i) {        int p;        p = 1;        while (i > 1) {            p = p * i;            i = i - 1;        }        return p;    }}

Progress:

[x] does not exactly mean done. It just means I consider it done. There may still be bugs (e.g. no overflow is accounted for in Lexer right now)

  • Lexer
  • Parser (Recursive Descent, LL(1)) (in-progress)
  • Code Generator
  • Semantic Checker
  • Garbage Collection
  • JIT Compiler

About

[WIP] Rust implementation of (a subset of) Java compiler

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp