Compiler
Compilers are software that translate higher-level (more human readable) programming languages to lower-level languages (e.g. machine code). The processor executes machine code, which indicates when binary high and low signals are required in the arithmetic logic unit of the processor. Examples of compiled languages include BASIC, Fortran, C++, C, and Java.
Here are 6,154 public repositories matching this topic...
-
Updated
Oct 28, 2021 - JavaScript
Describe the bug
The content of the the svelte file is a large HTML chunk, without any script logic or styling being involved. Max stack size exceeded error while compiling.
To Reproduce
https://svelte.dev/repl/a9dfcc17551c4aeb95e8fe748a97061d?version=3.20.1
Expected behavior
Compiling should not break
Information about your Svelte project:
Svelte 3.20.1, Rollup, Windo
[Bug]: incorrectly rejects `await` when following a function with an arrow in default parameters
💻
- Would you like to work on a fix?
How are you using Babel?
Programmatic API (babel.transform
, babel.parse
)
Input code
(async function () {
function f(_=()=>null) {}
await null;
});
or
(function* () {
function f(_=()=>null) {}
yield;
});
Configuration file name
package.json
Configuration
_No respon
-
Updated
Oct 28, 2021 - JavaScript
-
Updated
Oct 29, 2021 - Kotlin
-
Updated
Oct 28, 2021 - Go
Marked version:
3.x.x
Describe the bug
A clear and concise description of what the bug is.
Right now, import {use} from "markedjs"
does not work, this worked in 2.x.x.
To Reproduce
Steps to reproduce the behavior:
Install & import it.
The DefinitelyTyped
definitions also mark this incorrectly as being supported still.
A workaround is importing one of the structur
-
Updated
Oct 28, 2021 - V
-
Updated
Aug 9, 2021 - C++
-
Updated
Oct 28, 2021 - Rust
It is awkward, but TypeScript officially supports using .js
in import specifiers, like so:
import {foo} from './path/to/some/file.js'
console.log(foo)
where ./path/to/some/file.js
does not actually exist, but th
-
Updated
Oct 27, 2021 - Java
### Example
let unreachableProxy = "http://127.0.0.1:8888"
try:
let client = newHttpClient(proxy=newProxy(unreachableProxy), timeout=1)
var res = client.getContent("https://github.com")
echo res
except:
echo "Timed out"
Current Output
timeout variable is ignored, program stuck until default socket timeout will happen
Expected Output
Timed out a
-
Updated
Oct 23, 2021 - Go
I was trying to use CE to show case address sanitizers
With GCC a typical output might look like
READ of size 4 at 0x7ffdb0b840dc thread T0
#0 0x4012d2 in main /app/example.cpp:6
#1 0x7f0f0fc790b2 in __libc_start_main (/lib/x86_64-linux-gnu/libc
For now, Object protocol methods are (mostly) thin wrapper of matching vm functions. Because we don't need to have duplicated functions for same features, they need to be moved from vm to object protocol functions.
vm
path:vm/src/vm.rs
- object protocol path:
vm/src/protocol/object.rs
The matching vm functions are easy to find because object methods are calling it.
- get_att
-
Updated
Oct 29, 2021 - Python
I believe this is undocumented behaviour.
import numba as nb
@nb.njit
def f1():
for i in nb.prange(1):
print(type(i)) # >>> int64
@nb.njit(parallel=True)
def f2():
for i in nb.prange(1):
print(type(i)) # >>> uint64
f1()
f2()
This caused a nasty bug in my own code that was hard to debug as the problem did not exist without `parallel=Tr
-
Updated
Sep 28, 2021
-
Updated
Oct 28, 2021 - Python
-
Updated
May 8, 2021 - JavaScript
Describe the feature you'd like to request
These are common issues developers run into with Next.js. Some are mentioned in the docs, but ideally you don't have to go check the docs.
Describe the solution you'd like
Instead, ESLint can provide compile-time feedback and suggestions.
getStaticProps
/getServerSideProps
leading to [next build