| 2896 | hx::Class staticClass; |
| 2897 | |
| 2898 | GetFieldByName(CppiaStream &stream,bool isThisObject,bool inIsStatic=false) |
| 2899 | { |
| 2900 | classId = stream.getInt(); |
| 2901 | nameId = stream.getInt(); |
| 2902 | isStatic = inIsStatic; |
| 2903 | object = (isThisObject||isStatic) ? 0 : createCppiaExpr(stream); |
| 2904 | name.raw_ref() = 0; |
| 2905 | isInterface = false; |
| 2906 | vtableSlot = -1; |
| 2907 | } |
| 2908 | GetFieldByName(const CppiaExpr *inSrc, int inNameId, CppiaExpr *inObject,bool inIsStatic) |
| 2909 | : CppiaDynamicExpr(inSrc) |
| 2910 | { |
nothing calls this directly
no test coverage detected