Executable lines
Internal guidelines to define executable lines for a language.
Last updated
Was this helpful?
Was this helpful?
package foo; // +0
namespace bar { // +0
...
}
import java.util.ArrayList; // +0
#include <stdio> // +0
public interface FooFace { // +0
void doFoo(); // +0
}
public class Foo1 implements FooFace { // +0
private String name; // +0
}
struct PairWithOperator { // +0
int x; // +0
int y; // +0
bool operator==(PairWithOperator rhs) const { // +0
return x == rhs.x && y == rhs.y; // +1
}
}
class C {
C(const C&) =default; // +0 (explicit inheritance of parent method)
}
using Vec = std::vector<T,MyAllocator<T>>; // +0
static { // +0
...
}
01 ERROR-MESSAGE. *> +0
02 ERROR-TEXT PIC X(132) OCCURS 10 TIMES *> +0
INDEXED BY ERROR-INDEX.
77 ERROR-TEXT-LEN PIC S9(9) COMP VALUE +132. *> +0for // +1
( // +0
int i=0; // +0
i < 10; // +0
i++ // +0
) // +0
{ // +0
}foo(1, bar()); // +1
foo(1, // +1
bar()); // +0var a; // +1