Stefan Wachter
Stefan Wachter
In the following example the `innerObj` field is not set, i.e. `new ClassWithInnerObj().innerObj` is undefined: ``` @JSExportTopLevel("ClassWithInnerObj") @JSExportAll class ClassWithInnerObj { val x = 1 object innerObj extends js.Object {...
At the moment, `instanceof` checks do only work for classes that extend `js.Object`. Unfortunately case classes must not extend `js.Object`. Motivation (copied from Gitter): I would like to define Scala...
SemanticDB can be used as a solid base for code generation. Unfortunately annotation values are not included in the available information. For example in ScalaJS sources there is the annotation...
The package [scala.annotation.meta](https://www.scala-lang.org/api/current/scala/annotation/meta/index.html) contains a couple of meta annotations that when being used are not included as symbol occurrences in SemanticDB text documents. Example (from ScalaJS): ``` import scala.scalajs.annotation.JSExport import...
I have a project that contains the nbsbt plugin. The SBT_HOME environment variable points to an SBT 0.12.3 installation. When I execute the command "Open sbt Console" from netbeans then...
**What version of Ajv are you using? Does the issue happen if you use the latest version?** 8.12.0 **Ajv options object** none **Your code** ```javascript type AB = 'a' |...
**What issue does this pull request resolve?** https://github.com/ajv-validator/ajv/issues/2358 **What changes did you make?** I changed `JTDSchemaType` to use a ReadonlyArray instead of a mutable array for enums. **Is there anything...
This PR aligns the regular expression that is used to analyze dimensional metric names with AWS's requirements for these names. The rules for namespaces are (cf. [cloudwatch_concepts](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html)): alphanumeric characters (0-9A-Za-z),...
This PR adds the conversion `zioToPublisher`.
## Proposed changes Remove the `CfnAlertConfigurationProps.typeName` property. It is not mentioned in the [createAlertConfiguration rest API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Alert-Configurations/operation/createAlertConfiguration) and not forwarded by the corresponding [CloudFormation resource](https://github.com/mongodb/mongodbatlas-cloudformation-resources/blob/master/cfn-resources/alert-configuration/cmd/resource/resource.go#L82). Unfortunately, this would be a breaking...