• R/O
  • HTTP
  • SSH
  • HTTPS

happyabc: List of commits


RSS
Rev. Time Author
aa5a915 v0.6.0 2009-08-20 15:34:21 mzp

add VERSION

13ef618 2009-08-20 11:39:47 mzp

update makefile

5ebd05e 2009-08-20 10:35:34 mzp

update daily build script

fc1b626 2009-08-20 10:00:39 mzp

add integrate-detail

7e434a8 2009-08-20 07:10:14 mzp

add daily-build script

999d24a 2009-08-19 21:49:07 mzp

fix typo

03aa21a 2009-08-19 21:44:32 mzp

fix cpp

fddf6ac 2009-08-19 21:31:56 mzp

fix cpp warnning

b8ddbca 2009-08-19 09:45:39 mzp

update integrate result

66cc489 2009-08-19 09:32:59 mzp

add check-detail TARGET.

omake check-detail generates detail log of unit test result

5df2f0c 2009-08-19 09:15:29 mzp

change exit code of unittest runner

If unittest is failed, exit-code is 1. Otherwise 0.

763267e 2009-08-19 08:52:31 mzp

fix omakefile

1c39f16 2009-08-18 07:59:46 mzp

re-arrange gitignore entry

fadf536 2009-08-18 07:56:27 mzp

remove win32 files

bd23905 2009-08-18 07:54:50 mzp

fix OMakefile

ef4c35a 2009-08-17 21:59:39 mzp

Merge branch 'master' of git@github.com:mzp/scheme-abc

f4f3c8e 2009-08-17 21:58:59 mzp

remove Capfile & docs

ffc6bc2 2009-08-17 21:02:16 mzp

Change class sytnax: if super class is empty, super class is Object

44c78d6 2009-08-15 15:15:28 mzp

Add bootstrap

'main' function is entry point.
Multiple module is passed to habc, the main function of last module is used.

8aa7d45 2009-08-15 13:22:34 mzp

update suffix rules.

- .ho:> static link file
- .stub.ho: dynamic link file(i.e. don't link at compile time)

拡張子のルール変更
- .ho: habc-scmがリンクするファイル
- .stub.ho: FlashPlayerのスタブなのでリンクする必要がないファイル

69f809d 2009-08-15 12:39:29 mzp

add unittest for lexer

aa802f1 2009-08-14 22:06:46 mzp

remove tail lines

3dd3810 2009-08-13 20:45:22 mzp

Add rename module.

- Add module for variable-rename(alpha transform)
- To achieve multiple-define varibale

e.g.
(define x 1)
(trace x)
(define x 2)

is renamed to

(define x$0 1)
(trace x$0)
(define x 2)

c585df1 2009-08-13 09:14:21 mzp

add renameModule unittest/no implementation

fe10f9a 2009-08-13 08:56:25 mzp

update codegen implements

7053a9b 2009-08-13 08:49:02 mzp

update binding module implementation

7f004de 2009-08-13 08:39:21 mzp

Change binding module spec

514c09b 2009-08-11 15:32:24 mzp

Change codegen/asm module to remove extra dependencies

52f25f5 2009-08-10 13:48:05 mzp

Update unit test for asm module

- Add signature Asm
- Re-write asm module's unit test simply, by functor.

- Asmモジュールにシグネチャ追加
- functorを利用してAsmモジュールの単体テストコードを単純化。

b3b4ee5 2009-08-09 10:45:48 mzp

Update asm.

I changed Asm module to functor to separate assemble proccess and instruction definition.

Asmモジュールをファンクタに変更。アセンブルの処理と、命令の定義をちゃんと分離した。

Show on old repository browser