You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@mayukauenogayer Could you please test these cases in Japanese, if the same semantic couple until/before <datetime> exists, and let us know here if the same issue occurs? Thanks!
until + date => final boundary = date at 00:00:00 => INCORRECT
from + date1 + until + date2 => final boundary = date2 + 1 at 00:00:00 => CORRECT
context:
2019-03-28T10:00:00
Language: en
Parser input
until tomorrow
from yesterday until tomorrow
until the twenty-ninth
from yesterday until the twenty-ninth
Parser output
until tomorrow | TimeInterval(Before(TimeOutput { moment: 2019-03-29T00:00:00+01:00, grain: Day, precision: Exact, latent: false }))
from yesterday until tomorrow | TimeInterval(Between { start: 2019-03-27T00:00:00+01:00, end: 2019-03-30T00:00:00+01:00, precision: Exact, latent: false })
until the twenty-ninth | TimeInterval(Before(TimeOutput { moment: 2019-03-29T00:00:00+01:00, grain: Day, precision: Exact, latent: true }))
from yesterday until the twenty-ninth | TimeInterval(Between { start: 2019-03-27T00:00:00+01:00, end: 2019-03-30T00:00:00+01:00, precision: Exact, latent: false })
Parser expected output (Optional)
The text was updated successfully, but these errors were encountered: