added more code to stix_genpfmethod(). still incomplete

This commit is contained in:
hyunghwan.chung
2016-12-03 18:08:31 +00:00
parent 7b5fc708f7
commit b4a513cf40
9 changed files with 210 additions and 160 deletions

View File

@ -21,18 +21,18 @@
#method(#class) open: name for: mode
{
^(super new: 1) open: name for: mode
^(self new) open: name for: mode
}
#method open: name for: mode
{
<primitive: #stdio_open>
}
## #method open: name for: mode
## {
## <primitive: #stdio_open>
## }
#method close
{
<primitive: #stdio_close>
}
## #method close
## {
## <primitive: #stdio_close>
## }
}
#extend Stdio