Skip to content
#

proposal

Here are 220 public repositories matching this topic...

eu81273
eu81273 commented May 19, 2017

If the document.domain property is set in the page, _has module throws error "Access is denied" when try to check window's property for example 'hasOwnProperty'.

So I think it is better to change _has module like below.

var hasOwnProperty = {}.hasOwnProperty;
module.exports = function(it, key){
  try {
    return hasOwnProperty.call(it, key);
  } catch(e){
    return 
dolibarr
lvessiller-opendsi
lvessiller-opendsi commented Sep 17, 2019

Instructions

In product card when you modify lenght, width or heigth, it automatically calculate surface and then you will obtain weird values in surface field in this card.

Bug

If you crate or modify a product card with length, height and length values : it automatically calculate surface value but you have not the good value.

Environment

  • Version: develop, Dolibarr v10
  • **
dmitriid
dmitriid commented Aug 2, 2017

README states:

Why not use WebAssembly?

There are massive existing untyped codebases, and there is no easy way to convert an untyped, garbage collected language to WebAssembly. And even if there were, there is no guarantee that it would be any faster to transmit/parse/start than what we currently have.

whereas WebAssembly FAQ states:

The kind of binary format being considered f

rossberg
rossberg commented Oct 24, 2019

The threads proposal as is is limited to shared memories, but we probably want to generalise the language to other shared entities eventually, e.g., globals or tables. At that point, it might be conceivable that we may want to introduce not just atomic get/set for those, but also wait/notify instructions.

However, the current naming scheme for wait/notify instructions does not make explicit tha

RossTate
RossTate commented Mar 19, 2020

The overview states the following when introducing rtt.sub.

More generally, runtime type checks can verify a subtype relation between runtime types. In order to make these checks cheap, runtime subtyping follows a nominal semantics.

However, rtt.sub is not used anywhere in the overview; everything just uses rtt.get and then casts to the result. In which case, why does the MVP provide

benlesh
benlesh commented Oct 15, 2019

I noticed that this repo talks a lot about async when it comes to cancellation. I wanted to make sure it also considered synchronous use cases.

A good cancellation primitive needs to not only be asynchronous, but also synchronous.

I say this because it would be nice if this cancellation primitive could be used to free up resources for things like EventTarget in the DOM. EventTargets can have

Improve this page

Add a description, image, and links to the proposal topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the proposal topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.