-
-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: DetectIdentifier obtain complete variable name (#323)
* Add logic to enable detection of complete variable name (ex. contact.first_name) * - Create Enum - Change signature --------- Co-authored-by: Alejandro Javier Sanchez Roa <[email protected]>
- Loading branch information
1 parent
590910d
commit 85270ac
Showing
4 changed files
with
89 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace DynamicExpresso | ||
{ | ||
/// <summary> | ||
/// Option to set the detector variable level | ||
/// </summary> | ||
public enum DetectorOptions | ||
{ | ||
None = 0, | ||
IncludeChildren = 1 | ||
} | ||
} |
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