mirror of
https://github.com/pierre42100/comunic
synced 2025-06-20 17:15:19 +00:00
First commit
This commit is contained in:
118
3rdparty/luminous/languages/include/vb.php
vendored
Executable file
118
3rdparty/luminous/languages/include/vb.php
vendored
Executable file
@ -0,0 +1,118 @@
|
||||
<?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'
|
||||
);
|
Reference in New Issue
Block a user