ENH: Speed up app by using faster string tools for labels and methods #5826
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.
Profiling the app (see #5825) revealed that
makeValidVarNamecontributed to some of the slowness on app launch.The function is still needed for working out the name to give to a microphone/camera/serial device object, but because it also guesses the case of a word and does a slower-but-general conversion, using it to convert e.g. our own attribute names (which we already know are camelCase) meant unnecessary overhead. Replacing it with faster, specific functions should reduce load time.