Skip to content
Snippets Groups Projects

OOP: semantic check - abstract method body; template in params; more conf tests (issue #427)

Merged Miklos Magyari requested to merge abstrFunc into master
11 files
+ 279
19
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -87,6 +87,15 @@ type class @trait ClassWithAbstract3 {
function @abstract f_abs();
}
type class @abstract ClassWithAbstract4 {
function @abstract f_abs1(in charstring pl_str);
function f_non_abs(in charstring pl_str) {
//dummy implementation
}
public function @abstract f_abs2();
}
type class InheritedAbstract extends ClassWithAbstract4 { }
type class SuperClass {
var integer vl_a;
Loading