| 1909 | Expressions args; |
| 1910 | |
| 1911 | CallStatic(CppiaStream &stream) |
| 1912 | { |
| 1913 | classId = stream.getInt(); |
| 1914 | fieldId = stream.getInt(); |
| 1915 | ReadExpressions(args,stream); |
| 1916 | } |
| 1917 | |
| 1918 | const char *getName() HXCPP_OVERRIDE { return "CallStatic"; } |
| 1919 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
nothing calls this directly
no test coverage detected