Giter VIP home page Giter VIP logo

Comments (9)

ixti avatar ixti commented on September 28, 2024

The problem is not with ?: notation. But with arrays as keys. I'm 100% sure that it was working before, because some JS limitations forced us to explain behavior of arrays as keys in README. In visual example it can be explained as:

var arr = [];
var key = [1,2,3];
arr[key] = 123;
console.log(arr[key]); // -> 123
console.log(arr['1,2,3']); // -> 123

In other words, when you use arrays as key, it become joined with , (commas) before...
Anyway I'm 100% sure it was working before, so it's a kinda regression.

from js-yaml.

 avatar commented on September 28, 2024

Good that I discovered the regression :)

Your library is not yet fully test covered? What testing library are you using? Couldn't get it by looking at the tests quickly.

from js-yaml.

ixti avatar ixti commented on September 28, 2024

We are in the progress of porting original tests, so in fact it's a home-brew testing suite, but we are going to switch to vows in future.

from js-yaml.

 avatar commented on September 28, 2024

Have a look at http://visionmedia.github.com/mocha/ as well. It also works on the browser.

from js-yaml.

ixti avatar ixti commented on September 28, 2024

Hm. Probably we will use mocha for this project, yes. The day I was choosing testing framework, vows was the only one that was really good.

from js-yaml.

 avatar commented on September 28, 2024

Yeah Mocha is quite new compared to Vows. It's by TJ so the quality is really high.

from js-yaml.

ixti avatar ixti commented on September 28, 2024

Looks, like we'll need to drop support of arrays or objects as keys due to JavaScript limitations:

> var obj = {};
undefined
> var arr = [1,2,3];
undefined
> var alt = {foo:'bar'};
undefined
> obj[arr] = true;
true
> obj[alt] = true;
true
> obj
{ '1,2,3': true,
  '[object Object]': true }

As you can see using non-scalars as keys in JS is absolutely unpredictable.

from js-yaml.

ixti avatar ixti commented on September 28, 2024

I have asked @clarkevans for clarifications, so until his thoughts - suspending issue...

from js-yaml.

ixti avatar ixti commented on September 28, 2024

As using arrays/objects as keys of objects in JS is really unpredictable, we will not support it. This will be described in README.

from js-yaml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.