language
Here are 3,591 public repositories matching this topic...
-
Updated
Sep 3, 2020 - V
-
Updated
Sep 4, 2020 - Ruby
This came up for fixes to svg-gradient()
(less/less.js#3261). There are no automated visual regression tests, so it might be good to do so for functions that create visual assets. See: https://github.com/garris/BackstopJS
-
Updated
Sep 3, 2020 - JavaScript
-
Updated
Aug 27, 2020
-
Updated
Aug 20, 2020
-
Updated
Aug 22, 2020 - Python
-
Updated
Sep 3, 2020 - Nim
Our error messages are not consistent regarding the use of quotes, e.g. some quote the function name and contract name, others don't.
We should agree on how we want to do that and make it consistent everywhere.
@erak argues for double quotes "
around all user defined names.
I tend to agree.
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Sep 4, 2020 - Dart
-
Updated
Aug 30, 2020 - C
-
Updated
Sep 3, 2020 - Red
This is a follow-up to #4097 where we used an AtomicInteger
as a poor-mans replacement for a Semaphore
with tryAcquire
(or maybe even drainPermits
).
-
Updated
Sep 3, 2020 - Go
-
Updated
Sep 3, 2020 - Haxe
-
Updated
Aug 31, 2020 - C
-
Updated
Aug 26, 2020 - Haskell
-
Updated
Sep 3, 2020 - JavaScript
-
Updated
Aug 26, 2020 - C#
Really nice project.
Writing in coconut files, you lose all the IDE integrations for Python. For example, I use VSCode and all the intellicode and hints of course doesn't work for cocount.
I am not too familiar but perhaps theres needs to be a separate language server or maybe you could leverage the existing Python integrations. Either way, better IDE integration wo
-
Updated
Sep 20, 2018
Improve this page
Add a description, image, and links to the language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the language topic, visit your repo's landing page and select "manage topics."
Found while reading over #39697
Request completions inside of
""
and you'll get the names of every propery onString
. What's happening is that we're not checking to see if the current string literal type is the argument type (as opposed to the object type itself).Learning how this works might be a bit involved, but the fix is easy: add fourslash tests, ad