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 5,685 public repositories matching this topic...
-
Updated
Jun 28, 2021 - JavaScript
Describe the bug
The content of the the svelte file is a large HTML chunk, withouy any script logics 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, Wind
💻
- Would you like to work on a fix?
How are you using Babel?
Programmatic API (babel.transform
, babel.parse
)
Input code
See REPL: https://runkit.com/alexandre-cai/60a2ae9feaab4400130133c8
transform(`
type Test = 1 | -1;
`, {
parserOpts: {
plugins: ["typescript"],
},
plugins: [
({ types: t }) => ({
visitor: {
TSLit
-
Updated
Jun 28, 2021 - JavaScript
-
Updated
Jun 28, 2021
-
Updated
Jun 28, 2021 - Go
Describe the bug
I'm using rollup to bundle dependencies (for a Svelte framework web app) but having trouble importing and using markedjs. It appears the library was recently ported to ESM modules, but I don't see any documentation on how to use as such. The standard syntax to import ES6 modules give me errors:
import { marked } from 'marked.esm';
returns
(!) Unresolved dependencies
-
Updated
Jun 28, 2021 - V
- It took me a while to understand this error message. I thought it meant I didn't have Node 15 locally
- It'd be great to link all error messages to markdown files in the repo so that we can expand and improve them over time
-
Updated
May 16, 2021 - C++
-
Updated
Jun 28, 2021 - TypeScript
As of today, there are various inline-assembler-like builtins implementing the WebAssembly instruction set, but these only cover instructions that cannot be represented by a simple unary or binary expression, for example there is no i32.add(x, y)
and one would instead write `x +
-
Updated
Jun 28, 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
Jun 21, 2021 - Go
Currently, with dark theme only available colour scheme is grey shades, while light mode offers multiple colour schemes. With only greys, it can be hard to tell difference between shades.
It might be good idea to add (more) colour schemes to dark mode. Even just copying schemes from light mode would be a good start, although they might need a bit of tweaking to avoid heavy contrast with backgro
-
Updated
Jun 28, 2021 - Python
In numba/stencils/stencil.py, there are various places (like line 552, "if isinstance(kernel_size[i][0], int):") where we check for "int" in relation to neighborhoods. I ran across a case where I was creating a neighborhood tuple by extracting values from a Numpy array. This causes a problem because those Numpy values will not match in these isinstance int checks. I worked around it by conver
-
Updated
Feb 21, 2021
-
Updated
May 8, 2021 - JavaScript
-
Updated
Jun 28, 2021 - Python
What version of Next.js are you using?
11
What version of Node.js are you using?
v14.17.0
What browser are you using?
Chrom
What operating system are you using?
MacOs
How are you deploying your application?
next start
Describe the Bug
When i use the
with-zustand
example, it throws this :