Skip to content
#

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 7,346 public repositories matching this topic...

next.js
jasonboninger
jasonboninger commented May 28, 2022

Verify canary release

  • I verified that the issue exists in Next.js canary release

Provide environment information

Operating System:
Platform: win32
Arch: x64
Version: Windows 10 Home
Binaries:
Node: 16.13.0
npm: N/A
Yarn: N/A
pnpm: N/A
Relevant packages:
next: 12.1.7-canary.19
react: 18.1.0
react-

good first issue area: Developer Experience

A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

  • Updated Aug 10, 2022
  • JavaScript
svelte
ehsan2003
ehsan2003 commented Feb 7, 2022

Describe the problem

the low level documentation (https://svelte.dev/docs) is not really easy to use ( and incomplete in some cases)
I think if the runtime function contain JSDOC it will help a lot and give the developers an easier way to discover api documentation

additionally it is possible to replace the https://svelte.dev/docs with the generated docs ( with some thing like https://ty

feature request good first issue docs
cpboyd
cpboyd commented Aug 6, 2022

Preliminary Checks

Summary

Previous issues:

  • #25089
help wanted type: documentation good first issue
dtzxporter
dtzxporter commented Oct 7, 2021

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

good first issue category: ESM
zygoloid
zygoloid commented Aug 6, 2022

We currently have no lexical support for character literals. While in principle we could reuse string literals for this purpose, it would make code more self-documenting and readable if we had a distinct lexical syntax for character literals versus string literals. Based on the syntactic choices made in other languages, single-quoted text ('x') seems likely to be the best option here. We need a

good first issue design idea
assemblyscript
Nim
FredTheDino
FredTheDino commented Jul 23, 2022

I was casually trying out Nim-lang and playing with nimpretty. Ofcourse I decided to mess with a flag called "indent", and nimpretty doesn't seem to handle this.

I don't really have the time to do a full bisect, I just installed it and played around. Felt it was better to report this than to ignore it.

Example run

 ~ :: nim r a.nim
Hint: used config file '/etc/nim/nim.cfg' [Conf]
H
numba
brunojacobs
brunojacobs commented Jun 14, 2022
  • I have tried using the latest released version of Numba (most recent is
    visible in the change log (https://github.com/numba/numba/blob/main/CHANGE_LOG).
  • I have included a self contained code sample to reproduce the problem.
    i.e. it's possible to run as 'python bug.py'.

I think I have discovered a very minor bug - or rather inconsistency with numpy - in Numba's implementation

good first issue bug - failure to compile