Merge branch 'master' into 1323-local

Conflicts:
	lib/linguist/samples.json
This commit is contained in:
Arfon Smith
2014-07-01 16:32:52 -05:00
14 changed files with 246 additions and 91 deletions

View File

@@ -0,0 +1,25 @@
SuperStrict
Framework Brl.StandardIO
Type TMyType
Field property:int
Function A:int(param:int)
'do nothing
End Function
Method B:int(param:int)
'do nothing
End Method
End Type
Global my:TMyType = new TMyType
?Win32
my.A()
my.B()
?Linux
my.B()
my.A()
?