Fixed support for "BlitzMax"

- language was already defined but missed "type: programming", so detection of "BlitzMax"-files did not work. Fixed that.
- added "BlitzMax"-example to samples (and recreated samples.json)
This commit is contained in:
Ronny Otto
2014-07-01 09:56:11 +02:00
parent 526244be11
commit a12520763c
3 changed files with 26669 additions and 26611 deletions

View File

@@ -222,6 +222,8 @@ BlitzBasic:
- .decls
BlitzMax:
type: programming
color: "#cd6400"
extensions:
- .bmx

File diff suppressed because it is too large Load Diff

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()
?