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

Add create package script #686

Closed

Commits on Apr 19, 2023

  1. Configuration menu
    Copy the full SHA
    d786413 View commit details
    Browse the repository at this point in the history
  2. fix build script name

    TwitchBronBron committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    fbaaed7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2ccec94 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    53c1aeb View commit details
    Browse the repository at this point in the history
  5. Add coverage reporting

    TwitchBronBron committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    817c651 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e31226b View commit details
    Browse the repository at this point in the history
  7. fix coverage reporting

    TwitchBronBron committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    b2d223a View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2023

  1. Merge pull request #1 from rokucommunity/adoption

    refactor in preparation for adoption the project
    TwitchBronBron authored Apr 24, 2023
    Configuration menu
    Copy the full SHA
    f1546e3 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. Configuration menu
    Copy the full SHA
    94304cd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a223c2a View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Update README.md

    TwitchBronBron authored Sep 8, 2023
    Configuration menu
    Copy the full SHA
    ec82a06 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from rokucommunity/bugfix/string-val-function-n…

    …ot-compliant
    
    Fixed `val()` edge cases: hex without radix and `NaN`
    lvcabral authored Sep 8, 2023
    Configuration menu
    Copy the full SHA
    afca557 View commit details
    Browse the repository at this point in the history
  3. Add changelog

    TwitchBronBron committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    f72f2dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    af0c223 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2023

  1. Configuration menu
    Copy the full SHA
    202cc9f View commit details
    Browse the repository at this point in the history
  2. 0.45.1

    TwitchBronBron committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    ab5322a View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. add logic for optional chaining (#21)

    * add logic for optional chaining
    
    * remove console log
    
    * format doc
    
    * fix test
    
    * fix uts
    nadiapadalka authored Oct 25, 2023
    Configuration menu
    Copy the full SHA
    7569e86 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. fix(interp): Preventing multiple calls for dot-chained methods (#22)

    * Preventing multiple calls for dot-chained methods
    
    * Fixed `prettier` issue
    lvcabral authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    e6c98ae View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

  1. Configuration menu
    Copy the full SHA
    98dcee2 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Configuration menu
    Copy the full SHA
    d8878a9 View commit details
    Browse the repository at this point in the history
  2. 0.45.2

    TwitchBronBron committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    7ef68bb View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. fix(components): Replacing package luxon by day.js on roDateTime an…

    …d `roTimespan` #28 (#29)
    
    * fix(components): Replacing package luxon by day.js on `roDateTime` and `roTimespan` #28
    
    * Fixed prettier issue
    lvcabral authored Nov 21, 2023
    Configuration menu
    Copy the full SHA
    5f13b59 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Configuration menu
    Copy the full SHA
    e98151c View commit details
    Browse the repository at this point in the history
  2. feat(components): Implemented missing ifEnum methods in roArray a…

    …nd `roAssociativeArray` (#33)
    
    * Implements missing methods from `ifEnum` in `roArray` and `roAssociativeArray` #26
    
    * Implemented unit tests
    
    * Prettier fix
    
    ---------
    
    Co-authored-by: Bronley Plumb <[email protected]>
    lvcabral and TwitchBronBron authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    6e5b422 View commit details
    Browse the repository at this point in the history
  3. feat(lex,parse): Add stub try/catch implementation (#34)

    * feat(lex): Emit try/catch/throw lexemes for parsing
    
    RBI 9.4 adds support for error handling via the `try`/`catch` model [1].
    Interestingly, `try`, `catch`, and `endtry` are all valid identifiers!
    That makes parsing a little bit tougher, but it's not unprecedented in
    this language.  Detect `try`/`catch`/throw`/`end try` during lexing and
    emit the proper lexemes.
    
    [1] https://developer.roku.com/docs/references/brightscript/language/error-handling.html
    see sjbarag#554
    
    * feat(parse): Consume try, catch, and end try lexemes
    
    Throwing exceptions and catching them aren't yet supported in `brs`, so
    executing only the `try` block seems to be a reasonable "bare minimum"
    approach to try/catch support.  Handle `try`, `catch`, and `end try`
    lexemes in the parser, emitting TryCatch statements for the interpreter
    to execute naïvely.
    
    see sjbarag#554
    
    * Fixed Test Case
    
    ---------
    
    Co-authored-by: Sean Barag <[email protected]>
    Co-authored-by: Bronley Plumb <[email protected]>
    3 people authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    b8e459a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4fc5ac2 View commit details
    Browse the repository at this point in the history