Browse Source

per clause tests for stack map generation

tags/V1_7_0RC1
aclement 12 years ago
parent
commit
24221c560c

+ 10
- 0
tests/bugs170/language/PerCflow.java View File

@@ -0,0 +1,10 @@
aspect PerCflow percflow(execution(* Bar.*(..))) {
}

class Bar {
void m() {
n();
}
void n() {
}
}

+ 1
- 0
tests/bugs170/language/PerTarget.java View File

@@ -0,0 +1 @@
aspect PerTarget pertarget(this(PerTarget)) { }

+ 1
- 0
tests/bugs170/language/PerThis.java View File

@@ -0,0 +1 @@
aspect PerThis perthis(this(PerThis)) { }

+ 1
- 0
tests/bugs170/language/PerTypeWithin.java View File

@@ -0,0 +1 @@
aspect PerTypeWithin pertypewithin(PerTypeWithin) { }

Loading…
Cancel
Save