Git Product home page Git Product logo

Comments (9)

sekur avatar sekur commented on September 24, 2024

Yes, I've noticed that as well. I suppose an empty string is technically valid, but it seems like it defeats the purpose of defining a description statement in the schema if it's not going to contain any meaningful value.

from yang-js.

sindhukothe avatar sindhukothe commented on September 24, 2024

True. But I am not the one writing these yangs :)

from yang-js.

sekur avatar sekur commented on September 24, 2024

What YANG module has this? Let me loop in @llhotka to get his thoughts on dealing with this.

from yang-js.

llhotka avatar llhotka commented on September 24, 2024

Empty description should be possible, I will check the parsing rules.

from yang-js.

llhotka avatar llhotka commented on September 24, 2024

The parser seems to accept empty descriptions, both single- and double quoted.

from yang-js.

sindhukothe avatar sindhukothe commented on September 24, 2024

Example yang with this:
https://github.com/YangModels/yang/blob/master/vendor/cisco/xr/611/Cisco-IOS-XR-ipv4-bgp-oper-sub1.yang

from yang-js.

llhotka avatar llhotka commented on September 24, 2024

No problem on the parser side:

$ coffee check_submodule.coffee Cisco-IOS-XR-ipv4-bgp-oper-sub1.yang 
Submodule OK.

from yang-js.

sekur avatar sekur commented on September 24, 2024

Thanks @llhotka for your verification. The issue is on yang-js side, it is enforcing that the argument exists... I'll fix on my end.

from yang-js.

sekur avatar sekur commented on September 24, 2024

@llhotka - the issue is that the parser currently returns an empty string both for when the argument is an empty string and when there is no argument.

coffee> parser = require 'yang-parser'
coffee> parser.parse 'description "";'
YangStatement { prf: '', kw: 'description', arg: '', substmts: [] }
coffee> parser.parse 'description;'
YangStatement { prf: '', kw: 'description', arg: '', substmts: [] }
coffee> parser.parse 'input {}'
YangStatement { prf: '', kw: 'input', arg: '', substmts: [] }
coffee> parser.parse 'input "" {}'
YangStatement { prf: '', kw: 'input', arg: '', substmts: [] }

I was previously treating empty arg string as non-existence which was presenting the issue as described in this ticket. If I allow empty arg string from the yang-parser then I will need a way to differentiate between a legitimate empty arg string vs undefined argument. Can you have the yang-parser return arg: undefined/null if no argument found during parsing?

from yang-js.

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.