~oontvoo/+junk/test_hw

« back to all changes in this revision

Viewing changes to src/jminusminus/JStaticBlock.java

  • Committer: vnguyen
  • Date: 2013-05-08 07:53:03 UTC
  • Revision ID: oontvoo@hotmail.com-20130508075303-ej3276l4f3lva9p8
supportĀ staticĀ block

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
    @Override
18
18
    public void preAnalyze(Context context, CLEmitter partial)
19
19
    {
20
 
        // TODO
 
20
        // do nothing
21
21
    }
22
22
    
23
23
    
35
35
    @Override
36
36
    public JAST analyze(Context context)
37
37
    {
38
 
        // TODO
 
38
        block.analyze(context);
39
39
        return this;
40
40
    }
41
41
 
42
42
    @Override
43
43
    public void codegen(CLEmitter output)
44
44
    {
45
 
        // TODO:
 
45
        block.codegen(output);
46
46
    }
47
47
}