diff options
| author | Fumitoshi Ukai <fumitoshi.ukai@gmail.com> | 2015-04-11 01:02:27 +0900 |
|---|---|---|
| committer | Fumitoshi Ukai <fumitoshi.ukai@gmail.com> | 2015-04-11 01:14:28 +0900 |
| commit | d2bcf66048a9ce2a0a12b75d4c54d70c6b2a4292 (patch) | |
| tree | 5544cdb86d6f5f11961fdd0d77d9a3cf839db53b /var.go | |
| parent | 8f60f069bb8d2faf0e4f823d1e86042a116c1bff (diff) | |
rewrite call and foreach
before:
% ./run_integration_test.rb android
tar -xzf ../android.tgz
Running make for android... 6.05 secs
Running kati for android... 64.08 secs
android: OK
PASS!
after:
% ./run_integration_test.rb android
tar -xzf ../android.tgz
Running make for android... 5.76 secs
Running kati for android... 41.54 secs
android: OK
PASS!
Diffstat (limited to 'var.go')
| -rw-r--r-- | var.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ type Var interface { } type SimpleVar struct { + // TODO(ukai): string -> Value (literal or so?) value string origin string } |
