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

next.js
rikkit
rikkit commented May 30, 2022

Verify canary release

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

Provide environment information

    Operating System:
      Platform: linux
      Arch: x64
      Version: #1 SMP Tue Jun 23 12:58:10 UTC 2020
    Binaries:
      Node: 16.14.2
      npm: 8.5.0
      Yarn: 3.2.0
      pnpm: N/A
    Relevant packages:
      next: 12.1.6
      react: 18.
good first issue area: ESLint

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 Jun 1, 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
nrandell
nrandell commented May 30, 2022

Preliminary Checks

Description

If

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
assemblyscript
Nim
dom96
dom96 commented May 10, 2022

I expected ? to not overwrite the query, but to merge. The docs of the proc use the word "concatenate" which implies that this is how the proc should work, but the implementation overwrites the query instead of concatenating.

Example

import uri
let foo = parseUri("https://google.com/?page=10")
echo(foo ? {"test": "42"})

Current Output

https://google.com/?t
coolreader18
coolreader18 commented Apr 21, 2021

See e.g. #2570. Some of the unit tests there with "wrong error message" should be somewhat easy to fix - just correct the error message we have to match CPython's. Others might be trickier, since you'll need to add diagnostics to recognize bad syntax and give a more detailed error than "unexpected token". Also, I think around half of them could be fixed just by adding "invalid syntax" in the messa

good first issue
RubenRBS
RubenRBS commented Apr 14, 2022

compiler-explorer/compiler-explorer#3515 allowed the site to load even if the long url is not deserializable, but currently the site just silently fails and displays the default config.

It would be great if a notification could be shown to the user with a helpful message when this happens.
The steps needed to implement this feature are:

  1. In the catch added by the lin
good first issue request