fix(corp/tvixbolt): move output above bytecode section
Most expressions people enter will probably have a fairly small result. It's useful to see *that* it did the correct thing before looking at *how* it did that. Change-Id: I50d7d4c07e41f11b71a16c00c49b9553ae9e90a5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6334 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
		
							parent
							
								
									18efbac5c5
								
							
						
					
					
						commit
						6c40fb33b5
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -184,10 +184,10 @@ impl Output {
 | 
				
			||||||
            <>
 | 
					            <>
 | 
				
			||||||
            {maybe_show("Parse errors:", &self.parse_errors)}
 | 
					            {maybe_show("Parse errors:", &self.parse_errors)}
 | 
				
			||||||
            {maybe_show("Warnings:", &self.warnings)}
 | 
					            {maybe_show("Warnings:", &self.warnings)}
 | 
				
			||||||
 | 
					            {maybe_show("Output:", &self.output)}
 | 
				
			||||||
            {maybe_show("Compiler errors:", &self.compiler_errors)}
 | 
					            {maybe_show("Compiler errors:", &self.compiler_errors)}
 | 
				
			||||||
            {maybe_show("Bytecode:", &String::from_utf8_lossy(&self.bytecode))}
 | 
					            {maybe_show("Bytecode:", &String::from_utf8_lossy(&self.bytecode))}
 | 
				
			||||||
            {maybe_show("Runtime errors:", &self.runtime_errors)}
 | 
					            {maybe_show("Runtime errors:", &self.runtime_errors)}
 | 
				
			||||||
            {maybe_show("Output:", &self.output)}
 | 
					 | 
				
			||||||
            {maybe_show("Runtime trace:", &String::from_utf8_lossy(&self.trace))}
 | 
					            {maybe_show("Runtime trace:", &String::from_utf8_lossy(&self.trace))}
 | 
				
			||||||
            </>
 | 
					            </>
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue