Forked from piscisaureus
To identify one particular pull request, find the pull request number on the Azure DevOps site:
Then fetch and checkout the pull request in a local branch named pull/137
Forked from piscisaureus
To identify one particular pull request, find the pull request number on the Azure DevOps site:
Then fetch and checkout the pull request in a local branch named pull/137
| {------------------------------------------------------------------------------- | |
| Discussion of ContT in terms of callbacks | |
| For an alternative exposition, see | |
| <http://www.haskellforall.com/2012/12/the-continuation-monad.html>. | |
| -------------------------------------------------------------------------------} | |
| {-# OPTIONS_GHC -Wall #-} | |
| import Control.Exception |
| """ | |
| A PyYAML loader that annotates position in source code. | |
| The loader is based on `SafeConstructor`, i.e., the behaviour of | |
| `yaml.safe_load`, but in addition: | |
| - Every dict/list/unicode is replaced with dict_node/list_node/unicode_node, | |
| which subclasses dict/list/unicode to add the attributes `start_mark` | |
| and `end_mark`. (See the yaml.error module for the `Mark` class.) |
| <?php | |
| use Symfony\Component\Console\Command\Command; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Output\ConsoleOutputInterface; | |
| use Symfony\Component\Console\Output\OutputInterface; | |
| /** | |
| * Testcase: app/console foo > std 2> err | |
| */ |