comunic/3rdparty/luminous/languages/include/vb.php

118 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2016-11-19 11:08:12 +00:00
<?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'
);