14 lines
238 B
Plaintext
14 lines
238 B
Plaintext
class Class
|
|
pub type Target
|
|
|
|
pub declaredName: String
|
|
pub fqn: String
|
|
|
|
pub extern fn constructor() -> Constructor<Self::Target>
|
|
end
|
|
|
|
class Constructor<T>
|
|
pub type Args : []
|
|
pub fn new(...args: Self::Args) -> T
|
|
end
|