metaprogramming
Here are 636 public repositories matching this topic...
-
Updated
Dec 16, 2021 - Swift
curl -k --digest --user username:password url
is converted to
import requests
response = requests.get('http://url', verify=False, auth=('username', 'password'))
but should be
import requests
response = requests.get('http://url', verify=False, auth=requests.auth.HTTPDigestAuth('username', 'password'))
-
Updated
Jan 1, 2022 - Java
The GitHub label "good-first_bug" is empty. It is linked to from https://github.com/hylang/hy/blob/master/CONTRIBUTING.rst and the read the docs version.
I have noticed that for some enums I have compilation fail (which is good, as I don't want to check if any code has some issues with wrong min/max specification for enum values one by one), but for others it is not complaining at all.
It seems that this happens only if there is a missing enum of value MAGIC_ENUM_RANGE_MAX+1
This is fairly representative example of the code that should fail
Rubberduck version information
The info below can be copy-paste-completed from the first lines of Rubberduck's log or the About box:
Rubberduck version [Version 2.5.2.6030
OS: Microsoft Windows NT 10.0.22000.0, x64
Host Product: Microsoft Office x64
Host Version: 16.0.14701.20226
Host Executable: WINWORD.EXE
Description
Language inspection for assignment of LCase suggests usi
-
Updated
Dec 8, 2021 - C++
@MartinWitt points out rightly that assertTrue assertions should always have a message, see INRIA/spoon#4298 (review)
It's a good Spoon exercise to write a processor to detect assertTrue without messages.
We welcome first contributors to Spoon who add missing messages to assertTrue.
-
Updated
Dec 28, 2021 - C++
-
Updated
Dec 29, 2021 - Java
-
Updated
Dec 30, 2021 - Lua
-
Updated
Dec 31, 2021 - Scala
-
Updated
Oct 27, 2021 - C++
-
Updated
Nov 12, 2021 - Python
-
Updated
Dec 2, 2021 - C++
-
Updated
Dec 20, 2021 - Scala
-
Updated
Dec 30, 2021 - C#
-
Updated
Dec 16, 2021 - Swift
-
Updated
Dec 31, 2021 - C++
-
Updated
Dec 12, 2021 - C
-
Updated
Dec 9, 2021 - C
-
Updated
Apr 15, 2021 - JavaScript
-
Updated
Dec 29, 2021 - Julia
-
Updated
Sep 25, 2019 - C++
-
Updated
Dec 29, 2021 - Java
-
Updated
Oct 2, 2019 - C#
Parent issue: #335
Every plugin must be able to use all properties to construct the exact PSI element being fed in to achieve isomorphism between Quote and Scope. To ensure that AST parsing and our quote-and-template system is robust, more testing is needed to increase stability and reliability.
Checklist for WhenExpression
- Destructure and make available all methods related to re
-
Updated
Jul 7, 2021 - Python
Improve this page
Add a description, image, and links to the metaprogramming topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the metaprogramming topic, visit your repo's landing page and select "manage topics."
Current Output
Expected Output