Jose Mendoza

Results 8 issues of Jose Mendoza

Fix notice: ```v ./ved.v:475:15: notice: function `utf8_str_len` will be deprecated after 2022-05-28, and will become an error after 2022-11-24; use `string.len_utf8()` instead 473 | // Handle utf8 codepoints 474 |...

This PR is required for [PR #28214](https://github.com/vlang/v/pull/13758).

**V version:** V 0.3.0 d08edf8 **OS:** Bodhi Linux **What did you do?** This is a simplified version of #15285. Capture a generic type variable and print it: ```v module main...

Bug

This PR adds support for more expressions/statements: * Support options. ## Statements: * ForCStmt: `for i := 0; i < 10; i++ { println(i) }` ## Expressions: * Comptime `if`....

Reimplement Feature

A new type of pointer is introduced to the compiler: `^T`, a smart pointer that has automatic reference counting and also points to a value in the heap. This pointer...

### Describe the bug This bug was discovered while developing PR #24653. The checker allows us to pass a numeric value to `JS.Number` without a prior cast, which leads to...

Bug
Unit: JS

### Describe the feature Weeks ago, on V's Telegram channel, I had proposed the idea of ​​introducing module variables. The objective of this idea is to remove `__global` from the...

Feature/Enhancement Request