mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* Format testsuite escript * Format testsuite pol * Update docs Switch "attributes" to "members" to better align with Escript terms. * Add core-changes, breaking-changes
17 lines
292 B
Text
17 lines
292 B
Text
// Various tests with calling a super-class's method in an unscoped manner
|
|
|
|
class BaseClass()
|
|
function BaseClass( this )
|
|
endfunction
|
|
endclass
|
|
|
|
class Foo( BaseClass )
|
|
function Foo( this )
|
|
super::Method( this );
|
|
endfunction
|
|
|
|
function Method( this )
|
|
endfunction
|
|
endclass
|
|
|
|
Foo();
|