Matthias Krüger

Results 214 issues of Matthias Krüger

```` 3 AS drei 1 < drei AS comp your name HAS to be Validaria and age has to be comp ```` In the generated code, there are no traces...

parsing
OV-lang

rule: ```` name has to be ~a~ ```` schema: ```` { name: a } ```` cmd: ```` java -jar openvalidation-cli/target/openvalidation.jar --culture en --language javascript --rule "name has to ~a~" --schema...

bug
codegen

rules ```` 1 AS ONE 0 AS ZERO ONE / ZERO AS TWO your age must be TWO ```` schema: ` age: 0` There is no warning that we divide...

feature

rule ```` your 1 HAS to be 2 and you numb has to be 1 ```` we don't know if "1" is refering to a model.1 / key 1 or...

bug
OV-lang

For the linux users ou there, we might want to provide a [manual page](https://en.wikipedia.org/wiki/Man_page). This could be based on the --help output, I guess?

good first issue
ov-cli

The openvalidation-cli should have a `--version` flag that prints the current version (and git hash) of the cli. The output could look like this:``openvaldation 0.0.212 (a416c5e 2019-08-29)`` It should contain...

good first issue
ov-cli

Running `java -jar openvalidation-cli/target/openvalidation.jar --help` prints ``` --culture [-c] (a string; default: "") culture code of the natural language. for example: de-DE, en-US, ru ``` however `de-DE` and `en-US` do...

good first issue
ov-cli

Generated code has a bunch of empty lines in it, perhaps we can strip those? ````` var HUMLValidator = function() { var huml = new HUMLFramework(); huml.appendRule("", ["age"], "your age...

enhancement
codegen

the heap use after free we had applied locally when searching for memleaks a few days ago, but I guess the change went missing somehow. pass CXXFLAGS to the linker,...

### Code ```Rust // build-pass // compile-flags: -Z mir-opt-level=4 #![crate_type = "lib"] #![feature(lang_items)] #![no_std] struct NonNull(*mut T); struct Unique(NonNull); #[lang = "owned_box"] pub struct Box(Unique); impl Drop for Box {...

I-ICE
T-compiler
C-bug