mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			475 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			475 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/LexicalPath.h>
 | |
| #include <AK/String.h>
 | |
| 
 | |
| namespace HackStudio {
 | |
| enum class Language {
 | |
|     Unknown,
 | |
|     Cpp,
 | |
|     CSS,
 | |
|     JavaScript,
 | |
|     HTML,
 | |
|     GitCommit,
 | |
|     GML,
 | |
|     Ini,
 | |
|     Shell,
 | |
|     SQL,
 | |
| };
 | |
| 
 | |
| Language language_from_file(LexicalPath const&);
 | |
| Language language_from_name(String const&);
 | |
| String language_name_from_file(LexicalPath const&);
 | |
| 
 | |
| }
 | 
