Coveralls logob
Coveralls logo
  • Home
  • Features
  • Pricing
  • Docs
  • Sign In

abs-lang / abs
76%
master: 76%

DEFAULT BRANCH: master
Build:
LAST BUILD BRANCH: go-116
Repo Added 31 Jan 2019 09:07PM UTC
Total Files 8
# Builds 1432 Last
Badge
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

LAST BUILD ON BRANCH fix-mixing-property-and-index-expression
branch: fix-mixing-property-and-index-expression
CHANGE BRANCH
x
Reset
  • fix-mixing-property-and-index-expression
  • badges
  • 1.1.x
  • make-hashes-iterable
  • destructuring-hashes
  • issue-144-cd-only
  • key-in-hash
  • sleep
  • contributing
  • release-1.1.0
  • 1.1.0
  • master
  • 1.2.x
  • issue-144-v2
  • issue-166
  • issue-164
  • issue-164-v2
  • parse-exponential-notation
  • absrc-source-file
  • background-commands
  • issue-171
  • issue-171-alex
  • mount-abs-history-in-dev
  • better-illegal-tokens-when-parsing-numbers
  • number-math-rounding
  • issue-190
  • doc-command-executor
  • add-code-of-conduct-1
  • 1.2.0
  • 1.3.x
  • bats-testing
  • go-1.12
  • unicode
  • issue-199-exec
  • 1.3.0
  • 1.4.x
  • underscores-in-numeric-literals
  • go-mod
  • hash-str-should-convert-to-valid-json
  • implicit-return-value
  • fix-hash-to-json
  • 1.3.1
  • benchmark-for-lazy-evaluation
  • lazy-evaluation-in-1.3.x
  • 1.3.2
  • repl-without-terminal-no-panic
  • eval
  • allow-digits-in-vars
  • 1.4.0
  • 1.5.x
  • negate-in
  • 1.4.1
  • break-continue
  • higher-file-writers
  • stack-overflow
  • unique
  • 1.5.0
  • numeric-bash-arguments-support
  • 1.6.x
  • 1.5.1
  • deprecate-legacy-command-syntax
  • index-ranges
  • 1.6.0
  • 1.7.x
  • return-semicolon
  • 1.6.1
  • playground
  • reverse-search
  • echo-dying-message
  • reverse-search-2
  • replace-array
  • replace-short-form
  • number-abbr
  • index-ranges-bug
  • 1.6.2
  • 1.7.0
  • 1.8.x
  • source-vs-require
  • negative-indexes
  • bash-style-interpolation-in-strings
  • go-prompt-master
  • array-tsv
  • go-1.13
  • abs-installer-fixes
  • 1.8.0
  • 1.9.x
  • issue-284
  • 1.8.1
  • optional-chaining
  • arg-panic
  • 1.8.2
  • 1.8.3
  • 1.10.x
  • 1.10.0
  • 1.11.x
  • dependabot/bundler/docs/rubyzip-2.2.0
  • issue-303
  • issue-315
  • 1.10.1
  • named-functions
  • decorators
  • fn-call
  • 1.11.0
  • fix-324
  • 1.11.1
  • dependabot/bundler/docs/nokogiri-1.10.8
  • 1.11.2
  • embedded-interpolation
  • 1.11.3
  • multiple-decorators
  • 1.11.4
  • simplified-installer
  • 1.12.x
  • builtin-functions-tests
  • fn-chunk
  • fn-clamp
  • fn-between
  • upgraded-deps
  • funny-cases
  • find-shortcut
  • array-intersect
  • array-diff
  • symmetric-diff
  • array-union
  • array-flatten
  • array-flatten-deep
  • array-max
  • array-min
  • array-reduce
  • array-partition
  • 1.12.0
  • 1.13.x
  • std-library
  • 1.12.1
  • 2.0.x
  • deprecations
  • upgrade-guide
  • index-range-panics
  • 2.0.0
  • 2.1.x
  • descending-int-range
  • default-args-for-functions
  • 2.2.x
  • 2.1.0
  • cli-repl
  • write-outer-scope
  • memoize
  • 2.2.0
  • 2.3.x
  • fix-tests
  • memo-fix
  • 2.2.1
  • fix-negative-precedence
  • 2.2.2
  • bye-bye-darwin-386
  • go-1.15
  • 2.3.0
  • 2.4.x
  • edge-case-silent-return
  • 2.3.1
  • array-shuffle
  • reverse-copy
  • 2.5.x
  • 2.4.0
  • go-116

3 Apr 2020 - 16:08 coverage decreased (-0.03%) to 75.87%
1325

Pull #356

travis-ci-com

9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow
Fixed mixing property and index expression assignment

The way we assign to properties or indexes is pretty
awkward as we temporarely store in the parser the
last parsed expression -- with the caveat that we store
2 of these values, one for properties and one for indexes.
When either of them gets set, we need to "consume" the other one.

This probably needs to be rethought at some point but for
the time being this is a simple fix.
Pull Request #356: Fixed mixing property and index expression assignment, closes #355

2 of 2 new or added lines in 1 file covered. (100.0%)

3575 of 4712 relevant lines covered (75.87%)

160.58 hits per line

Relevant lines Covered
4712 RELEVANT LINES 3575 COVERED LINES
Build:
160.58 HITS PER LINE
Source Files on fix-mixing-property-and-index-expression
  • Tree
  • List 8
  • Changed 8
  • Source Changed 8
  • Coverage Changed 3
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent Builds

Builds Branch Coverage Commit Committer Type Time Via
1325 fix-mixing-property-and-index-expression
75.87
Fixed mixing property and index expression assignment The way we assign to properties or indexes is pretty awkward as we temporarely store in the parser the last parsed expression -- with the caveat that we store 2 of these values, one for proper... 9181eb84f9c35729a3bad740fb7f9d93?size=18&default=identiconweb-flow Pull #356 03 Apr 2020 04:09PM UTC travis-ci-com
1324 fix-mixing-property-and-index-expression
75.91
Fixed mixing property and index expression assignment The way we assign to properties or indexes is pretty awkward as we temporarely store in the parser the last parsed expression -- with the caveat that we store 2 of these values, one for proper... 7e1b44a243d0cd4a01e5de1fa41fc0ed?size=18&default=identiconodino push 03 Apr 2020 04:08PM UTC travis-ci-com
See All Builds (1432)
  • Repo on GitHub
Troubleshooting · Open an Issue · Sales · Support · ENTERPRISE · CAREERS · STATUS
BLOG · TWITTER · Legal & Privacy · Supported CI Services · What's a CI service? · Automated Testing

© 2021 Coveralls, Inc