| 92 | } |
| 93 | |
| 94 | JASBasicInst::TKeymap *JASBasicInst::getKeyRegion(int index) { |
| 95 | #line 152 |
| 96 | JUT_ASSERT(index >= 0); |
| 97 | if (index >= mKeyRegionCount) { |
| 98 | return NULL; |
| 99 | } |
| 100 | return &mKeymap[index]; |
| 101 | } |
| 102 | |
| 103 | JASBasicInst::TKeymap *JASBasicInst::getKeyRegion(int index) const { |
| 104 | JUT_ASSERT(index >= 0); |