| 3877 | } |
| 3878 | |
| 3879 | BfTypeDef* BfCompiler::GetArrayTypeDef(int dimensions) |
| 3880 | { |
| 3881 | BF_ASSERT(dimensions <= 4); |
| 3882 | if (dimensions == 1) |
| 3883 | return mArray1TypeDef; |
| 3884 | if (dimensions == 2) |
| 3885 | return mArray2TypeDef; |
| 3886 | if (dimensions == 3) |
| 3887 | return mArray3TypeDef; |
| 3888 | return mArray4TypeDef; |
| 3889 | } |
| 3890 | |
| 3891 | void BfCompiler::VisitAutocompleteExteriorIdentifiers() |
| 3892 | { |
no outgoing calls
no test coverage detected