mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 02:51:13 +00:00
118 lines
1.6 KiB
PHP
Executable File
118 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
$luminous_vb_values = array('False', 'Nothing', 'True');
|
|
// http://msdn.microsoft.com/en-us/library/asfcc119.aspx
|
|
$luminous_vb_operators = array('AddressOf', 'And', 'AndAlso', 'GetType',
|
|
'GetXmlNamespace', 'Is', 'IsFalse', 'IsNot', 'IsTrue', 'Mod', 'Not',
|
|
'Or', 'OrElse', 'TypeOf', 'Xor');
|
|
|
|
$luminous_vb_types = array('Boolean', 'Byte', 'CBool', 'Cbyte', 'CChar',
|
|
'CDate', 'CDbl', 'CDec', 'Char', 'CInt', 'CLng', 'CObj', 'CShort', 'CSng',
|
|
'CStr', 'CType', 'Date', 'Decimal', 'Double', 'Integer', 'Long', 'Object',
|
|
'Short', 'String');
|
|
|
|
$luminous_vb_keywords = array(
|
|
'AddHandler',
|
|
'Alias',
|
|
'Ansi',
|
|
'As',
|
|
'Assembly',
|
|
'Auto',
|
|
'ByRef',
|
|
'ByVal',
|
|
'Call',
|
|
'Case',
|
|
'Catch',
|
|
'Class',
|
|
'Const',
|
|
'Declare',
|
|
'Default',
|
|
'Delegate',
|
|
'Dim',
|
|
'DirectCast',
|
|
'Do',
|
|
'Each',
|
|
'Else',
|
|
'ElseIf',
|
|
'End',
|
|
'EndIf',
|
|
'Enum',
|
|
'Erase',
|
|
'Error',
|
|
'Event',
|
|
'Exit',
|
|
'Finally',
|
|
'For',
|
|
'Friend',
|
|
'Function',
|
|
'Get',
|
|
'GetType',
|
|
'GoSub',
|
|
'GoTo',
|
|
'Handles',
|
|
'If',
|
|
'Implements',
|
|
'Imports',
|
|
'In',
|
|
'Inherits',
|
|
'Interface',
|
|
'Let',
|
|
'Lib',
|
|
'Like',
|
|
'Loop',
|
|
'Me',
|
|
'Module',
|
|
'MustInherit',
|
|
'MustOverride',
|
|
'MyBase',
|
|
'MyClass',
|
|
'Namespace',
|
|
'New',
|
|
'Next',
|
|
'Nothing',
|
|
'NotInheritable',
|
|
'NotOverridable',
|
|
'On',
|
|
'Option',
|
|
'Optional',
|
|
'OrElse',
|
|
'Overloads',
|
|
'Overridable',
|
|
'Overrides',
|
|
'ParamArray',
|
|
'Preserve',
|
|
'Private',
|
|
'Property',
|
|
'Protected',
|
|
'Public',
|
|
'RaiseEvent',
|
|
'ReadOnly',
|
|
'ReDim',
|
|
'RemoveHandler',
|
|
'Resume',
|
|
'Return',
|
|
'Select',
|
|
'Set',
|
|
'Shadows',
|
|
'Shared',
|
|
'Single',
|
|
'Static',
|
|
'Step',
|
|
'Stop',
|
|
'Structure',
|
|
'Sub',
|
|
'SyncLock',
|
|
'Then',
|
|
'Throw',
|
|
'To',
|
|
'Try',
|
|
'Unicode',
|
|
'Until',
|
|
'Variant',
|
|
'Wend',
|
|
'When',
|
|
'While',
|
|
'With',
|
|
'WithEvents',
|
|
'WriteOnly'
|
|
); |