-
The type error
```
"\n" : char
```
results in this error message:
```
Error: Constant "
" overloaded to the overloading class String not including char
```
This happens because the backslash i…
-
Most linting rules, good practice guidelines, etc attempt to avoid `==` due to its confusing semantics.
Overloading the strict equality operator is out because it's going to break stuff.
How abo…
-
The validator-cli contains several important commands in the `src/node-commands.ts` file, but currently lacks comprehensive unit tests. Adding tests for these commands will significantly improve the r…
-
The `AbstractParameters` supertype does not seem to be used and there has not been a need for it in my experience.
What if we made the parameters subtypes of their originals, e.g. what if `positive(1…
-
**What is the work that needs to be done?**
### prep
Given a prep view
And a time_limit_prep set in hugo.toml or an override time_limit_prep set in the page front matter
When the total t…
-
Consider overloading bracket operator for retrieving arel attributes like in https://github.com/camertron/arel-helpers
``` ruby
Foo[:id]
Foo[:name]
# instead of
Foo.id
Foo.name_column
```
avoids the…
-
- [ ] Handle the overloading of methods.
- [ ] Auto-handle the schema of a method(args and return type, etc).
- [x] Custom class arguments and return type for both Cpp and Java.
-
Could be implemented by overloading the current message set and adding a setting to toggle "send float all the time."
Could be implemented by new nav messages that give "all float, all the time"
-
I recently wanted to create a type definitions file for the [promise.rb](https://github.com/lgierth/promise.rb) gem.
My initial stab for the `Promise#then` method looked like this:
```ruby
clas…
-
## What is the Problem Being Solved?
To support async flow exo methods (#9832) without liveslots support (#9881), we need to provide exo state access on top of the existing exo infrastructure. This…