-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace Map<number, T> with sparse array in DFAState #468
Open
BurtHarris
wants to merge
31
commits into
tunnelvisionlabs:master
Choose a base branch
from
BurtHarris:arrayopt
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
1bc2883
chore: eliminate 'npm link' from the build scripts.
c03ef91
Update vscode tasks.json
6c32473
(tool) Update pom.xml removing ref to ../runtime
db0b346
Relocate runtime build files to runtime/typescript
5078dfe
Move custom tool under tool/typescript
63a2325
cleanup target files that should not be checked in
e260009
Upgrade TypeScript to v2.9.2.
6f9e2db
Simplify build scripts w/ npm-run-all
8956cef
Move src/ to runtime/typescript/src
5a63b25
upgrade to [email protected]
59d7c4d
Upgrade TypeScript to V3.7.5
7311cf0
Update build process for speed. Operates across packages in this rep…
2d5a18c
Reintegrate the cross-platform tests
6f48f5f
tslint 6.1.1 and fix gripes
7e5bf51
Fix TestPerformance.ts so tsc doesn't hang
6fa15a9
more tslint...
f109206
whitespace in generated file
436cb61
Integrate eslint, prettier, huskey
0b2f879
Update CI control files to reflect change in lint, dropping pack steps
1743b12
Eliminate empty decorators
2239c13
clean attempts to provide imports without 'dist'
60e90f4
remove unneeded constructor overloads
7d02dde
Switch mocha config to .mocharc.yml
1a19980
Eleminate dependency on mocha-typescriptAll the tests now use the sam…
53db32a
Setup tsconfig.base.json
012c274
Implement internal module pattern
a312203
Merge branch 'build_reorg' into build_update
5c67dce
Eliminate async after fix of load order problem
bbb45ac
Mark vscode tsc-watch task as background
0f6e64b
update profiling to use node CPU profing switch
6195b5e
Replace Map<number, T> w Array<T>in DFAState.ts as optimization
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 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💭 Why
Array<DFAState>
instead ofDFAState[]
? I'm sure I used to know the answer...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are the same thing. It just was easier to textually substitute without changing the trailing '>'.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice to hear from you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P.S. most of these changes are from earlier PR #454.