adpi2

Results 100 issues of adpi2

It should be possible to evaluate `Array(1, 2, 3)` to create arrays.

enhancement
runtime evaluation

I would like to evaluate `println("foo")`. This should be possible by resolving the method in the `Predef` object.

enhancement
runtime evaluation

I cannot evaluate `"".size` using the runtime evaluation because `size` comes from the `StringOps` extension. Maybe, we should treat `String` as a special case and try to convert it to...

enhancement
runtime evaluation

If I have: ```scala val table: Array[Int] = ??? ``` I cannot run the expression `table(0) = 2`. It returns `Unsupported assignment`.

enhancement
runtime evaluation

Using the runtime evaluator I would like to evaluate such expression as `1.toDouble`.

enhancement
runtime evaluation

## Problem It is not possible to evaluate a local lazy val in Scala 3 (probably also in Scala 2) because the local variable is not visible in the class...

enhancement
expression compiler

In Scala 3: ```scala package example class MySuite extends munit.FunSuite { def sum(list: List[Int]): Int = list.sum test("sum of a few numbers") { assertEquals(sum(List(1,2,0)), 3) // breakpoint here } }...

bug
decoder

## Problem The evaluation of a local method or a local class in a value class is currently not supported. ```scala package example class A(self: String) extends AnyVal: def m(size:...

enhancement
expression compiler

With `EvaluationMode.ScalaEvaluationOnly`, this test fails: ```scala test("encoded outer") { val source = """|package example | |class `A+B` { | val foo = 42 | object && { | def x...

bug
expression compiler