Giter Club home page Giter Club logo

applynullabledecorators's People

Contributors

safern avatar terrajobst avatar

Watchers

 avatar  avatar

Forkers

terrajobst

applynullabledecorators's Issues

Add test coverage

Add test coverage with various different scenarios that the tool should support:

  1. Method chaining (calling overrides or internal methods that do argument validation)
  2. Internal/Private methods using Debug.Assert
  3. "is null" pattern.
  4. operators -> operator !=(string a, string b)
  5. Internal/Private methods, deeper analysis, if it dereference an argument without null validation, should assume it can't be null as well.
    ....
    etc.

Support constructor chaining

Visit constructor invocations using :this syntax.

Just like we do now for overrides or invocations to other public APIs, for constructors we also have argument validation, so we could hit a scenario like:

public foo(string x) : this(x, 0) { }
public foo(string x, int y) 
{
        if (x == null) throw new ArgumentNullException(nameof(x));
} 

So the tool should understand that x can't be null on either foo constructors.

Arrays or collections that can have null in the items

Right now the tool won't decorate an array or collection with ? for the underlying items, as it doesn't have a way yet to know if an item can be null for an array parameter.

It should do deeper analysis to figure out if an item within the array/collection can be null -> i.e string?[] IEnumerable<object?>

Support ?? during assignment.

We have some places where we do:

_x = x ?? throw new ArgumentNullException(nameof(x));

Therefore x can't be null, the tool, now, would mark it as nullable.

Generic types support

Haven't dug into this area yet, but, the tool doesn't do any generic parameters yet.

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.