This repository was archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
Improve the CRUD performance of LU sections #901
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
2553cc9
init
Danieladu 061e8b5
init
Danieladu eb21cfa
init
Danieladu 1e52aa7
refine
Danieladu 4e758ea
init
Danieladu 3097d76
init
Danieladu 2158da9
fix test
Danieladu 8802a41
fix test errors
Danieladu 8b0b6ce
fix error
Danieladu 3b88028
fix error
Danieladu f616697
Merge branch 'master' into hond/luparser-perf
feich-ms 122b518
fix comments
Danieladu 61b0b24
Merge branch 'hond/luparser-perf' of https://github.com/microsoft/bot…
Danieladu eb74a89
fix comments
Danieladu 464cc7f
refine
Danieladu 4bd94ae
clone deep lu resource
Danieladu 34ab766
use cloneDeepWith wo clone luResource
Danieladu 5d89e83
remove antlr parser context from UtteranceAndEntitiesMap
Danieladu e8edb96
Merge branch 'master' into hond/luparser-perf
Danieladu 70df34b
Merge branch 'master' into hond/luparser-perf
Danieladu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,19 @@ | ||
| class BaseSection { | ||
| constructor(parameters) { | ||
| this.Errors = []; | ||
| this.SectionType = ''; | ||
| this.Id = ''; | ||
| this.Body = ''; | ||
| this.Range; | ||
|
|
||
| if (parameters) { | ||
| this.Errors = parameters.Errors || []; | ||
| this.SectionType = parameters.SectionType || ''; | ||
| this.Id = parameters.Id || ''; | ||
| this.Body = parameters.Body || ''; | ||
| this.Range = parameters.Range; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| module.exports = BaseSection; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.