-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1738 from rubberduck-vba/next
v2.0b
- Loading branch information
Showing
829 changed files
with
57,943 additions
and
36,859 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ public enum Accessibility | |
Friend, | ||
Static, | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
using System; | ||
using System.Runtime.InteropServices; | ||
using System.Runtime.InteropServices; | ||
|
||
namespace Rubberduck.API | ||
{ | ||
[ComVisible(true)] | ||
[Flags] | ||
//[Flags] | ||
public enum DeclarationType | ||
{ | ||
Project = 1 << 0, | ||
Module = 1 << 1, | ||
Class = 1 << 2, | ||
Control = 1 << 3, | ||
UserForm = 1 << 4, | ||
Document = 1 << 5, | ||
ModuleOption = 1 << 6, | ||
Member = 1 << 7, | ||
Procedure = 1 << 8 | Member, | ||
Function = 1 << 9 | Member, | ||
Property = 1 << 10 | Member, | ||
PropertyGet = 1 << 11 | Property | Function, | ||
PropertyLet = 1 << 12 | Property | Procedure, | ||
PropertySet = 1 << 13 | Property | Procedure, | ||
Parameter = 1 << 14, | ||
Variable = 1 << 15, | ||
Constant = 1 << 16, | ||
Enumeration = 1 << 17, | ||
EnumerationMember = 1 << 18 | Constant, | ||
Event = 1 << 19, | ||
UserDefinedType = 1 << 20, | ||
UserDefinedTypeMember = 1 << 21 | Variable, | ||
LibraryFunction = 1 << 22 | Function, | ||
LibraryProcedure = 1 << 23 | Procedure, | ||
LineLabel = 1 << 24 | ||
Project, //= 1 << 0, | ||
StandardModule, //= 1 << 1, | ||
ClassModule,// = 1 << 2, | ||
Control, //= 1 << 3, | ||
UserForm,// = 1 << 4, | ||
Document,// = 1 << 5, | ||
ModuleOption,// = 1 << 6, | ||
Procedure, //= 1 << 8, | ||
Function,// = 1 << 9, | ||
PropertyGet,// = 1 << 11, | ||
PropertyLet, //= 1 << 12, | ||
PropertySet, //= 1 << 13, | ||
Parameter, //= 1 << 14, | ||
Variable, //= 1 << 15, | ||
Constant,// = 1 << 16, | ||
Enumeration, //= 1 << 17, | ||
EnumerationMember, //= 1 << 18, | ||
Event, //= 1 << 19, | ||
UserDefinedType,// = 1 << 20, | ||
UserDefinedTypeMember,// = 1 << 21, | ||
LibraryFunction,// = 1 << 22, | ||
LibraryProcedure,// = 1 << 23, | ||
LineLabel,// = 1 << 24, | ||
//Member = Procedure | Function | PropertyGet | PropertyLet | PropertySet, | ||
//Property = PropertyGet | PropertyLet | PropertySet, | ||
//Module = StandardModule | ClassModule | UserForm | Document | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.