Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • dan0196/ligo
  • ligolang/ligo
  • maht0rz/ligo
  • JD-P/ligo
  • governancy/ligo
  • renovatorruler/ligo
  • dailambda/ligo
  • jevonearth/ligo
  • mbykovskyy_ecadlabs/ligo
  • opt9/ligo
  • arvidnl/ligo
  • jpic/ligo
  • juztin/ligo
  • steakandbake/ligo
  • mark-o-robson/ligo
  • simon138/ligo
  • nmangan/ligo
  • edmondlee/ligo
  • technomad21c/ligo
  • diogo.machado/ligo
  • kkirka/ligo
  • nobrakal/ligo
  • roxane3/ligo
  • GImbrailo/ligo
  • syuhei176/ligo
  • mjgajda/ligo
  • sanityinc/ligo
  • molllyn1/ligo
  • ulrikstrid/ligo
  • prometheansacrifice/ligo
  • nicolas.van.phan/ligo
  • ryujh21h/ligo
  • rishabhkeshan/ligo
  • amitcz/ligo
  • jobjo/ligo
  • deryyy/ligo
  • my8bit/ligo
  • daachi/ligo
  • elmorg/ligo
  • a.kumar4/ligo
  • dheavy/ligo
  • konchunas/ligo
  • ggichuru.dev/ligo
  • steven_j/ligo
  • arguiot/ligo
  • digitea00/ligo
  • melwyn95/ligo
  • chrispinnock/ligo
  • clarus1/ligo
  • patrickferris/ligo
  • caaatisgood/ligo
  • karoshibee/ligo-kbee
  • arguil/ligo
  • benjamin.fuentes/ligo
  • Dayveed117/ligo
  • timothymcmackin/ligo
  • shubham-kumar/ligo
  • bfamchon1/ligo
  • mavryk-network/ligo
  • int-index/ligo
60 results
Show changes
Commits on Source (4)
...@@ -108,7 +108,7 @@ const config = { ...@@ -108,7 +108,7 @@ const config = {
}, },
{ {
label: 'Discord', label: 'Discord',
href: 'https://discord.gg/9rhYaEt', href: 'https://discord.gg/xtz',
}, },
{ {
label: 'Telegram', label: 'Telegram',
......
...@@ -49,7 +49,7 @@ const TEAM = [ ...@@ -49,7 +49,7 @@ const TEAM = [
const COMMUNICATION_CHANNELS = [ const COMMUNICATION_CHANNELS = [
{ {
link: 'https://discord.gg/9rhYaEt', link: 'https://discord.gg/xtz',
icon: 'img/communication_channels/discord.svg', icon: 'img/communication_channels/discord.svg',
description: "Join our Discord server. We're here to help." description: "Join our Discord server. We're here to help."
}, },
......
...@@ -72,6 +72,7 @@ and expr : (CST.expr, unit, CST.pattern, unit, unit) AST.expression_ -> CST.expr ...@@ -72,6 +72,7 @@ and expr : (CST.expr, unit, CST.pattern, unit, unit) AST.expression_ -> CST.expr
| E_literal Literal_unit -> CST.EUnit (w (ghost_lpar, ghost_rpar)) | E_literal Literal_unit -> CST.EUnit (w (ghost_lpar, ghost_rpar))
| E_literal (Literal_int x) -> CST.EArith (Int (w (Z.to_string x, x))) | E_literal (Literal_int x) -> CST.EArith (Int (w (Z.to_string x, x)))
| E_literal (Literal_nat x) -> CST.EArith (Nat (w (Z.to_string x, x))) | E_literal (Literal_nat x) -> CST.EArith (Nat (w (Z.to_string x, x)))
| E_literal (Literal_mutez x) -> CST.EArith (Mutez (w (Z.to_string x, Z.to_int64 x)))
| _ -> | _ ->
failwith failwith
(Format.asprintf (Format.asprintf
......
...@@ -71,8 +71,9 @@ and expr : (CST.expr, unit, CST.pattern, unit, unit) AST.expression_ -> CST.expr ...@@ -71,8 +71,9 @@ and expr : (CST.expr, unit, CST.pattern, unit, unit) AST.expression_ -> CST.expr
| _ -> failwith "Impossible") | _ -> failwith "Impossible")
| E_literal Literal_unit -> CST.EUnit (w (ghost_lpar, ghost_rpar)) | E_literal Literal_unit -> CST.EUnit (w (ghost_lpar, ghost_rpar))
| E_literal (Literal_int x) -> CST.EArith (Int (w (Z.to_string x, x))) | E_literal (Literal_int x) -> CST.EArith (Int (w (Z.to_string x, x)))
| E_literal (Literal_nat x) -> CST.EArith (Int (w (Z.to_string x, x))) | E_literal (Literal_nat x) -> CST.EAnnot (w @@ (CST.EArith (Int (w (Z.to_string x,x))), ghost_as, CST.TVar (w "nat")))
| E_literal (Literal_string x) -> CST.EString (String (w @@ Ligo_string.extract x)) | E_literal (Literal_string x) -> CST.EString (String (w @@ Ligo_string.extract x))
| E_literal (Literal_mutez x) -> CST.EAnnot (w @@ (CST.EArith (Int (w (Z.to_string x,x))), ghost_as, CST.TVar (w "tez")))
| _ -> | _ ->
failwith failwith
(Format.asprintf (Format.asprintf
......