nit icon indicating copy to clipboard operation
nit copied to clipboard

Nit language

Results 103 nit issues
Sort by recently updated
recently updated
newest added

Do we really need to write generated files (like actors_*.nit introduced in #2361) on the file system or can we just keep them in memory during compilation ? The loader...

Feature Request

Issue #2164 is not fully solved yet. ## Some test cases * `http://nitweb.moz-code.org/property/core%3A%3AInt%3A%3A%25` * `http://nitweb.moz-code.org/property/core%3A%3AInt%3A%3A%2F` * Search for the `%` method. * Search for the `/` method.

Just pass the following piece of code to any Nit engine and see it crash: ``` class A type X: Numeric fun foo: X do return 42 end class B...

bug

``` $ ../bin/nit -e ' > print(0.0/0.0 != 0.0/0.0) > var x = 0.0/0.0 > print(x.is_nan) > print(x != x) > print(x != x * 1.0)' true true false true...

bug

Opportunity is a nitcorn Web app to organize meetings. Is it currently deployed at http://xymus.net/opportunity/ This service is already in use but it lacks a few features and still has...

newcomer

When the doc is so bad and really fails to answer important questions, I want to complain now, because we are in 2016! What about adding a link to the...

todo
nitdoc

nitunit fails to parse tests in the module `lib/json/serialization.nit`. There appears to be an importation conflict between `json::serialization` and `::serialization`. ``` Error: conflicting module files for `serialization`: `lib/json/serialization.nit`, `/home/xymus/projects/nit/lib/serialization/serialization.nit ```...

bug

The former is for the FFI (with `cname_blind` and `cname_normal_class`), the latter is for the compiler’s internals. To make a clear distinction between both, at least one of them should...

todo

nitcorn cookies are assigned by path. This cause some issues when tracking sessions In the following example, the 3 GET cause the creation of 3 distinct sessions - http://localhost:8080/foo/ -...

bug