• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

abs-lang / abs / 993 / 1
72%
master: 63%

Build:
Build:
LAST BUILD BRANCH: 2.8.x
DEFAULT BRANCH: master
Ran 04 Nov 2019 12:31PM UTC
Files 8
Run time 0s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

04 Nov 2019 12:26PM UTC coverage: 70.941%. First build
993.1

push

travis-ci-com

odino
Optional chaining, closes #296

This PR adds optional chaining to the language, allowing to
access "deep" properties and methods without having to validate
the whole object hierarchy:

```
a.b.c.d.e()
```

would return an error if any step of the way is `null`.

This can be rewritten as:

```
a?.b?.c?.d?.e()
```

and would return `null`, without breaking a script.

Largely inspired by [this](https://chromestatus.com/feature/5668249494618112).

2866 of 4040 relevant lines covered (70.94%)

40.72 hits per line

Source Files on job 993.1
  • Tree
  • List 0
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 705
  • Travis Job 993.1
  • b57e983a on github
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc