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

petrochenkov
petrochenkov commented Feb 11, 2020

... which are pretty annoying.
It probably wouldn't be a problem if Cargo didn't cache the warnings and didn't display them on every build, even if rustllvm isn't actually built.

Example of the warnings:

warning: In file included from ../rustllvm/rustllvm.h:4,
warning:                  from ../rustllvm/PassWrapper.cpp:6:
warning: C:/msys64/home/we/rust/src/llvm-project/llvm/include/l
DevSide
DevSide commented Jan 23, 2020

Description

Migrate some dependencies in devDependencies for gatsby package.

At least these (non exhaustive):

  • "@typescript-eslint/eslint-plugin"
  • "@typescript-eslint/parser"
  • "eslint"
  • "eslint-config-react-app"
  • "eslint-loader"
  • "eslint-plugin-flowtype"
  • "eslint-plugin-graphql"
  • "eslint-plugin-import"
  • "eslint-plugin-jsx-a11y"
  • "eslint-plugin-react"
  • "eslint-plugin-
fiesh
fiesh commented Nov 30, 2019

Bug Report

I think this should have been fixed by #7160.

Input Code

declare const enum E {
        e0 = "e0",
}

function f()
{
        console.log(E.e0);
}

Expected behavior/code
This is tsc's output:

function f() {
    console.log("e0" /* e0 */);
}

This is babel's output using @babel/preset-typescript:

function f() {
  conso
pnfcre
pnfcre commented Nov 18, 2019

🐛 Bug Report

I tried passing --open to the parcel src/index.html command, but nothing happened. This feature works perfectly in the latest stable parcel-bundler package.

🎛 Configuration (package.json)

{
  "scripts": {
    "start": "parcel src/index.html --open"
  }
}

🤔 Expected Behavior

Parcel should open http://localhost:1234 in my default web brow

svelte
khorpy
khorpy commented Jul 30, 2019

There is already bind:innerHTML and bind:textContent implemented for elements with contenteditable="true". But there is also a third property that is also would nice to have: bind:innerText.

InnerText approximates the text the user would get if they highlighted the contents of the element with the cursor and then copied it to the clipboard

sarpik
sarpik commented Jan 20, 2020

Hello, could we somehow document #522 / provide a better error message? I've spent waaaaay too much time trying to solve the issue before finding the already existing solution:/

Even better - fix it, instead of a work-around?

Thanks!

pjebs
pjebs commented Oct 15, 2018

The documentation for reflect.DeepEqual makes no mention of panic'ing: https://golang.org/pkg/reflect/#DeepEqual

In this example it panics:

println(fmt.Sprintf("fieldVal %T %v", fieldVal, fieldVal))
println(fmt.Sprintf("Zero %T %v", reflect.Zero(reflect.TypeOf(fieldVal)).Interface(), reflect.Zero(reflect.TypeOf(fieldVal)).Interface()))
reflect.DeepEqual(fieldVal, reflect.Zero(reflect.T
Nim
webmaster128
webmaster128 commented Jan 20, 2020

It would be cool if ./node_modules/.bin/asinit . --yes would answer all questions with yes to allow for quick or automatic project setups of throw away projects.

Interface could work like npm init --yes:

$ npm help init
NPM-INIT(1)                                                        NPM-INIT(1)



NAME
       npm-init - create a package.json file

   Synopsis
         
porglezomp
porglezomp commented Oct 11, 2019

I went to godbolt in the middle of the night and found it extremely bright and started wondering if it could respect the system setting.

There is a CSS media feature prefers-color-scheme which indicates whether the user prefers light or dark mode. It might be nice to make the default dark mode if the user hasn't explicitly picked one yet be "System" and using the prefers-color-scheme settin

numba
ballercat
ballercat commented Oct 14, 2018

Problem

walt-cli package when linking multiple .walt files together can "wrap" the modules in a stand-alone JS module. The resulting module is too large because it serialized the dependency tree with the AST information encoded directly into the output, resulting in a massive amount of js.

Encoding the dependencies into the file is done to ensure the module can be used stand-alone in br

hiiamboris
hiiamboris commented Dec 28, 2019

Describe the bug

>> trim reduce [none 2 none 3 none]
== [2 3]
>> trim/tail reduce [none 2 3 none]
== [2 3]
>> trim/head reduce [none 2 3 none]
== [2 3]
>> trim reduce [none 2 3 none]
== [2 3]

Expected behavior

== [2 none 3]
== [none 2 3]
== [2 3 none]
== [2 3]

Platform version (please complete the following information)

Red 0.6.4 for Window
deusaquilus
deusaquilus commented Dec 30, 2019

NOTE This issue has been modified several times as I have learned more about Typeclass derivation. Please see the Edit sections below for latest info.

In Quill, we frequently use the following pattern:

For some given type T (note, we do not have an actual instance of T yet!)

  1. If T is not a product, check if an Encoder[T] can be summoned. If it can, summon it and write it out to a data-s
You can’t perform that action at this time.