Searched refs:firstBodyStatement (Results 1 – 4 of 4) sorted by relevance
162 "TIRAMISU") || method.firstBodyStatement == null) { in checkAssertPlatformVersionAtLeast()173 if (method.firstBodyStatement.getBegin().isPresent()) { in checkAssertPlatformVersionAtLeast()174 line = method.firstBodyStatement.getBegin().get().line; in checkAssertPlatformVersionAtLeast()178 if (!method.firstBodyStatement.isExpressionStmt() in checkAssertPlatformVersionAtLeast()179 || !method.firstBodyStatement.asExpressionStmt() in checkAssertPlatformVersionAtLeast()187 method.firstBodyStatement.asExpressionStmt().getExpression(); in checkAssertPlatformVersionAtLeast()
239 methodData.firstBodyStatement = getFirstBodyStatement(method); in getMethodData()
256 assertThat(methodData.firstBodyStatement.isExpressionStmt()).isTrue(); in testMethodData()263 assertThat(methodData.firstBodyStatement.isExpressionStmt()).isTrue(); in testMethodData()265 methodData.firstBodyStatement.asExpressionStmt().getExpression(); in testMethodData()273 assertThat(methodData.firstBodyStatement.isExpressionStmt()).isTrue(); in testMethodData()275 methodData.firstBodyStatement.asExpressionStmt().getExpression(); in testMethodData()
28 public Statement firstBodyStatement; field in MethodData