Ken Gorab

Results 54 issues of Ken Gorab

Judging from the conversation in #64 it appears that the customization functionality could only be used to add new 2.0 providers. Indeed, looking at the [`getApiFor10aProvider` method in `OAuthManagerProviders`](https://github.com/fullstackreact/react-native-oauth/blob/master/android/src/main/java/io/fullstack/oauth/OAuthManagerProviders.java#L42), it's...

## The Bug When looking at the compiled code which is included at runtime ([[email protected]](https://unpkg.com/[email protected]/lib/scrollspy.js)), there are calls to import files under the `@babel/runtime` package, eg. ```js var _interopRequireDefault =...

``` func grid(): Bool[][]? { //if readFile("./input.txt") |input| { // input.trim().lines().map(l => l.chars().map(ch => ch == "#")) //} else { // None //} val input = try readFile("./input.txt") /* val...

Let's say there's a function which accepts another function as an argument: ``` func doOp(a: Int, b: Int, fn: (Int, Int) => Int): Int { fn(a, b) } ``` This...

language feature

For convenience, I'd like there to be an operator which allows inline "unwrapping" of a value as a particular type. For example, let's say there's an enum called `Type`: ```...

language feature

When compiling to C, the following code doesn't work as expected: ``` val count = 16 func newCountdown(n: Int): () => Unit { var count = n func rec() {...

bug

The following code will not work correctly: ``` enum Color { Red Blue } enum Direction { Up Down } val v: Color | Direction = Color.Red match v {...

bug

``` enum A { A1(a = 3) } println(A.A1()) ``` This panics in typechecking, due to the way we do "faked" typed arguments when typechecking enum variants with fields, specifically...

bug

When an expression contains a `return` as one of its paths, the stack is not properly cleaned up if this return happens mid-expression. For example, the following code blows up:...

bug