Skip to content
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

sqlite: make sourceSQL and expandedSQL string-valued properties #54721

Commits on Sep 4, 2024

  1. sqlite: make sourceSQL and expandedSQL string-valued properties

    Change sourceSQL and expandedSQL from being methods to being
    string-valued properties. These fields
    
    - are conceptually properties (and not actions),
    - are derived deterministically from the current state of the object,
    - require no parameters, and
    - are inexpensive to compute.
    
    Also, following the naming conventions of ECMAScript for new features,
    most function names should usually contain a verb, whereas names of
    (dynamically computed) properties generally should not, so the current
    names also seem more appropriate for properties than for functions.
    tniessen committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    185c301 View commit details
    Browse the repository at this point in the history