switched _ to . in a primitive method identifier

This commit is contained in:
hyunghwan.chung
2016-12-05 15:44:53 +00:00
parent b4a513cf40
commit 0cc0339158
9 changed files with 203 additions and 35 deletions

View File

@ -1,9 +1,9 @@
#class(#byte) Stdio(Object) from 'stdio'
{
#method(#class) _newInstSize
{
<primitive: #stdio_newInstSize>
}
## #method(#class) _newInstSize
## {
## <primitive: #stdio._newInstSize>
## }
#method(#class) new: size
{
@ -26,12 +26,12 @@
## #method open: name for: mode
## {
## <primitive: #stdio_open>
## <primitive: #stdio.open>
## }
## #method close
## {
## <primitive: #stdio_close>
## <primitive: #stdio.close>
## }
}