OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 module mojo.nacl; | |
6 | |
7 interface PexeCompilerInit { | |
8 PexeCompilerStart(handle<message_pipe> message_handle); | |
9 }; | |
10 | |
11 interface PexeCompiler { | |
12 PexeCompile(string? pexe_file_name) => (string? object_file_name); | |
Mark Seaborn
2015/10/27 17:30:21
Does "?" mean "optional" (i.e. may be null)?
(I'v
Sean Klein
2015/10/28 17:02:41
It means nullable, apparently.
I'll remove it, sin
| |
13 }; | |
OLD | NEW |