aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-02 22:43:15 +0800
committerGitHub <noreply@github.com>2017-05-02 22:43:15 +0800
commit084ab4123f3b00ffba49f3ac5edcc58e0d79f0fb (patch)
tree9d9d4a735b438499e1c76e24741f4fcb8c4ff1c0 /docs
parent1b15291af2342f65d784032b4508706100b5b016 (diff)
parent2871663cadca8355764c64bc921b2fc6126efb2c (diff)
downloaddexon-solidity-084ab4123f3b00ffba49f3ac5edcc58e0d79f0fb.tar.gz
dexon-solidity-084ab4123f3b00ffba49f3ac5edcc58e0d79f0fb.tar.zst
dexon-solidity-084ab4123f3b00ffba49f3ac5edcc58e0d79f0fb.zip
Merge pull request #2210 from ethereum/jsonio-remove-why3
Remove why3 from standard compiler
Diffstat (limited to 'docs')
-rw-r--r--docs/using-the-compiler.rst11
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst
index b74da213..890604b1 100644
--- a/docs/using-the-compiler.rst
+++ b/docs/using-the-compiler.rst
@@ -121,7 +121,6 @@ Input Description
// abi - ABI
// ast - AST of all source files (not supported atm)
// legacyAST - legacy AST of all source files
- // why3 - Why3 translated output
// devdoc - Developer documentation (natspec)
// userdoc - User documentation (natspec)
// metadata - Metadata
@@ -154,9 +153,9 @@ Input Description
"*": {
"*": [ "evm.sourceMap" ]
},
- // Enable the legacy AST and Why3 output of every single file.
+ // Enable the legacy AST output of every single file.
"*": {
- "": [ "legacyAST", "why3" ]
+ "": [ "legacyAST" ]
}
}
}
@@ -180,7 +179,7 @@ Output Description
],
// Mandatory: Error type, such as "TypeError", "InternalCompilerError", "Exception", etc
type: "TypeError",
- // Mandatory: Component where the error originated, such as "general", "why3", "ewasm", etc.
+ // Mandatory: Component where the error originated, such as "general", "ewasm", etc.
component: "general",
// Mandatory ("error" or "warning")
severity: "error",
@@ -272,7 +271,5 @@ Output Description
}
}
}
- },
- // Why3 output (string)
- why3: ""
+ }
}