Dulmina Renuke

Results 24 comments of Dulmina Renuke

```bal public function main() { var x = base16 `aa`; } ``` This gives error `unused variable 'x' with inferred type including error` can u have a look?

```bal public function main() { var y = base16 `aa`; io:println(typeof y); } ``` Gives ``` java.lang.NoSuchMethodError: io.ballerina.runtime.internal.types.BFunctionType.([Lio/ballerina/runtime/api/types/Parameter;Lio/ballerina/runtime/api/types/Type;Lio/ballerina/runtime/api/types/Type;JLjava/lang/String;Lio/ballerina/runtime/api/Module;)V at ballerina.io.1.types.$_object_types.$populate$type$ReadableTextRecordChannel(Unknown Source) at ballerina.io.1.types.$_types.$createTypes(Unknown Source) at ballerina.io.1.$_init.$currentModuleInit(io) at ballerina.io.1.$configurationMapper.$initAndPopulateConfigData(Unknown Source) at...

> ```ballerina > public function main() { > var y = base16 `aa`; > io:println(typeof y); > } > ``` > > Gives > > ``` > java.lang.NoSuchMethodError: io.ballerina.runtime.internal.types.BFunctionType.([Lio/ballerina/runtime/api/types/Parameter;Lio/ballerina/runtime/api/types/Type;Lio/ballerina/runtime/api/types/Type;JLjava/lang/String;Lio/ballerina/runtime/api/Module;)V >...

Will fix the build. Can start reviewing

> When looking at the path-symbols of the target-func, we get symbols (`BResourcePathSegmentSymbol`). Here, symbol-kinf information is missing. > > We want to distinguish between path symbols between > >...

> > Kind is always `null` in `BResourcePathSegmentSymbol`. Is this intentional? No, will add kinds

In angular 5 i got the same problem.i have tried every way to fix it but not working.finally i copy pasted bootstrap-notify.js file to angular component onInit() function then it...

It seems like we have more expressions similar to this that the spec doesn't mention propagating the CET to the sub-expressions. ```bal int a = checkpanic dependentlyTypedFunc(); float b =...

`parameter`, `field`, and `source` are keywords only in https://ballerina.io/spec/lang/master/#annot-attach-points. We can relax in other places. @jclark @hasithaa WDYT?

> var x = base16 `aa`; > var y = base16 `aa`; > var z = base16 `aa`; > var u = base16 `aa`; Added in [89e4f8f](https://github.com/ballerina-platform/ballerina-spec/pull/1086/commits/89e4f8fff0611fdc4cfd5009a161ddec0f53add4)