| 334 | } |
| 335 | |
| 336 | LSError ScriptLine::Serialize(ParamArchive& ar) |
| 337 | { |
| 338 | PARAM_CHECK(ar.Serialize("waitUntil", waitUntil, 1, "true")) |
| 339 | PARAM_CHECK(ar.Serialize("suspendUntil", suspendUntil, 1, "0")) |
| 340 | PARAM_CHECK(ar.Serialize("condition", condition, 1, "true")) |
| 341 | PARAM_CHECK(ar.Serialize("statement", statement, 1)) |
| 342 | return LSOK; |
| 343 | } |
| 344 | |
| 345 | LSError ScriptLabel::Serialize(ParamArchive& ar) |
| 346 | { |
nothing calls this directly
no test coverage detected