language
Here are 5,422 public repositories matching this topic...
-
Updated
Jun 30, 2022 - V
-
Updated
Jun 28, 2022 - JavaScript
-
Updated
Jun 30, 2022 - Ruby
When doing division and modulo operation with constant or immutable denominator it is possible to only do compile-time denominator check and skip runtime checks.
Consider following contracts:
pragma solidity 0.8.15;
uint256 constant _MODULE = 17;
contract C1 {
function f(uint256 a) external pure returns(uint256) {
return a % _MODULE;
}
}
contract C2 I'm Writing a ThemeColor Plugin, use Visitor.
In fn:visitColor , node.parent sometimes is null (box-shadow:0 0 0 1px #999 inset). I can't find the parent Declaration Node of Color Node.
so I want to [less.js/lib/less/visitors/visitor.js Visitor.prototype.visit](https://github.com/less/less.js/blob/0e268598c8327b9e8d36d9bb2edfde95d8d787be/packages/less/src/less/visitors/visitor.js
-
Updated
Jun 24, 2022
-
Updated
Jun 14, 2022
I can't find any documentation or thorough tests of the path substitution performed by compiler/options/pathSubs.
From looking at the code, these are the substitutions:
$nim: global nim prefix directory path$lib: stdlib directory path$home: user's home directory path$config: I think this is the directory path to the either the nimscript calling
`compiler/options/path
-
Updated
Apr 8, 2022 - Python
Feature
Many existing test cases check that pickle.dumps and pickle.loads of a given type return the exact same value. Almost failed pickle test in RustPython, lack __reduce__ method.
-
arrayiterator.__reduce__(test_array::test_iterator_pickle) -
filter.__reduce__(test_builtin::test_filter_pickle) — #3732 -
map.__reduce__(test_builtin::test_map_pickle) — #3734
-
Updated
Jun 30, 2022 - Dart
퀵 정렬 - bold 설정
설명
퀵 정렬 게시글 중 bold 설정이 일부 들어가지 않았습니다.
링크
스크린샷
- <img width="600" alt="image" src="https://user-images.githubusercontent.com/57972338/161484958-416f6d20-33df-412a-a5ca-c72f7
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Jun 30, 2022 - PHP
-
Updated
Jun 28, 2022 - C
-
Updated
Jun 29, 2022 - Haxe
-
Updated
Jun 27, 2022 - Red
Having a callback for when the selected element is changed would be useful, for similar reasons to TextEdit/LineEdit: validation, updating buffers, or the rest. I imagine that it would be something like selected(int) with int being the index, though LineEdit emits a simple callback without arguments so there may be a tradeoff I'm missing (an int should be easier to pass around on the oth
-
Updated
Apr 22, 2022 - Haskell
Add Scents
-
Updated
Jun 30, 2022 - Scala
-
Updated
Jun 28, 2022 - C#
-
Updated
Sep 18, 2021 - C
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."
As explained in microsoft/TypeScript#2548, the following code is not correct when
useDefineForClassFields: false, which is the default for targets before ES2021.However, when
useDefineForClassFields: true, there shouldn't be an error here.Expected: No error 2301 on `private p =