+ VariableAccessData* someVariable() const
+ {
+ if (m_variables.isEmpty())
+ return 0;
+ return m_variables[0]->find();
+ }
+
+ FlushFormat flushFormat() const
+ {
+ if (VariableAccessData* variable = someVariable())
+ return variable->flushFormat();
+ return DeadFlush;
+ }
+