Files
tokei-mirror/tests/data/vb6_cls.cls
Brandon Boone a1ed92df28 Added VB6 Support (#232)
* Added VB6 Support

https://en.wikipedia.org/wiki/Visual_Basic

* Added tests and removed frx

Removed frx: .frx is a compainon binary file to .frm (vb6 forms). It contains binary artifacts like images, but its format is proprietary.
2018-06-08 19:33:59 +01:00

23 lines
531 B
OpenEdge ABL

' 22 lines 17 code 3 comments 2 blanks
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "Class1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
'This is a comment
Private Sub Class_Initialize()
'This is another comment
Dim test As String
test = "TESTING"
End Sub