| Index: runtime/bin/vmservice/client/deployed/web/index_devtools.html
|
| diff --git a/runtime/bin/vmservice/client/deployed/web/index_devtools.html b/runtime/bin/vmservice/client/deployed/web/index_devtools.html
|
| index d6c5e1a2b3e1e3eab20885ef1bfc37b7b939aaf5..7d63ebaae7be0235451c9e5183cfe622f4ef0eec 100644
|
| --- a/runtime/bin/vmservice/client/deployed/web/index_devtools.html
|
| +++ b/runtime/bin/vmservice/client/deployed/web/index_devtools.html
|
| @@ -6437,6 +6437,9 @@ hr {
|
| <template if="{{ ref.serviceType == 'WebSocket' }}">
|
| <io-web-socket-ref ref="{{ ref }}"></io-web-socket-ref>
|
| </template>
|
| + <template if="{{ ref.serviceType == 'Process' }}">
|
| + <io-process-ref ref="{{ ref }}"></io-process-ref>
|
| + </template>
|
| </template>
|
| </polymer-element>
|
|
|
| @@ -10317,6 +10320,30 @@ hr {
|
| <div class="memberName">Working Directory</div>
|
| <div class="memberValue">{{ process['workingDirectory'] }}</div>
|
| </div>
|
| + <template if="{{ process['stdin'] != null }}">
|
| + <div class="memberItem">
|
| + <div class="memberName">stdin</div>
|
| + <div class="memberValue">
|
| + <io-socket-ref ref="{{ process['stdin'] }}"></io-socket-ref>
|
| + </div>
|
| + </div>
|
| + </template>
|
| + <template if="{{ process['stdout'] != null }}">
|
| + <div class="memberItem">
|
| + <div class="memberName">stdout</div>
|
| + <div class="memberValue">
|
| + <io-socket-ref ref="{{ process['stdout'] }}"></io-socket-ref>
|
| + </div>
|
| + </div>
|
| + </template>
|
| + <template if="{{ process['stderr'] != null }}">
|
| + <div class="memberItem">
|
| + <div class="memberName">stderr</div>
|
| + <div class="memberValue">
|
| + <io-socket-ref ref="{{ process['stderr'] }}"></io-socket-ref>
|
| + </div>
|
| + </div>
|
| + </template>
|
| </div>
|
|
|
| <br>
|
|
|