mirror of
				https://github.com/janet-lang/janet
				synced 2025-10-31 07:33:01 +00:00 
			
		
		
		
	Merge pull request #49 from boardwalk/fix_indentation
Fix indentation, converting some tabs to spaces.
This commit is contained in:
		| @@ -442,7 +442,7 @@ static JanetSlot janetc_tuple(JanetFopts opts, Janet x) { | ||||
|     JanetCompiler *c = opts.compiler; | ||||
|     const Janet *t = janet_unwrap_tuple(x); | ||||
|     return janetc_maker(opts, | ||||
| 	    janetc_toslots(c, t, janet_tuple_length(t)), | ||||
|             janetc_toslots(c, t, janet_tuple_length(t)), | ||||
|             JOP_MAKE_TUPLE); | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -197,7 +197,7 @@ void janet_description_b(JanetBuffer *buffer, Janet x) { | ||||
|         { | ||||
|             const char *n = janet_abstract_type(janet_unwrap_abstract(x))->name; | ||||
|             string_description_b(buffer, n, janet_unwrap_abstract(x)); | ||||
| 			return; | ||||
|             return; | ||||
|         } | ||||
|     case JANET_CFUNCTION: | ||||
|         { | ||||
| @@ -694,4 +694,3 @@ void janet_buffer_format( | ||||
|         } | ||||
|     } | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -219,17 +219,17 @@ Janet janet_get(Janet ds, Janet key) { | ||||
|                 } | ||||
|                 break; | ||||
|             } | ||||
|     case JANET_ABSTRACT: | ||||
|       { | ||||
| 	JanetAbstractType *type = (JanetAbstractType *)janet_abstract_type(janet_unwrap_abstract(ds)); | ||||
| 	if (type->get) { | ||||
| 	  value = (type->get)(janet_unwrap_abstract(ds),key); | ||||
| 	} else { | ||||
| 	  janet_panicf("no getter for %T ", JANET_TFLAG_LENGTHABLE, ds); | ||||
| 	  value = janet_wrap_nil(); | ||||
| 	} | ||||
| 	break; | ||||
|       } | ||||
|         case JANET_ABSTRACT: | ||||
|             { | ||||
|                 JanetAbstractType *type = (JanetAbstractType *)janet_abstract_type(janet_unwrap_abstract(ds)); | ||||
|                 if (type->get) { | ||||
|                     value = (type->get)(janet_unwrap_abstract(ds),key); | ||||
|                 } else { | ||||
|                     janet_panicf("no getter for %T ", JANET_TFLAG_LENGTHABLE, ds); | ||||
|                     value = janet_wrap_nil(); | ||||
|                 } | ||||
|                 break; | ||||
|             } | ||||
|     } | ||||
|     return value; | ||||
| } | ||||
| @@ -278,17 +278,17 @@ Janet janet_getindex(Janet ds, int32_t index) { | ||||
|         case JANET_STRUCT: | ||||
|             value = janet_struct_get(janet_unwrap_struct(ds), janet_wrap_integer(index)); | ||||
|             break; | ||||
|     case JANET_ABSTRACT: | ||||
|       { | ||||
| 	JanetAbstractType *type = (JanetAbstractType *)janet_abstract_type(janet_unwrap_abstract(ds)); | ||||
| 	if (type->get) { | ||||
| 	  value = (type->get)(janet_unwrap_abstract(ds),janet_wrap_integer(index)); | ||||
| 	} else { | ||||
| 	  janet_panicf("no getter for %T ", JANET_TFLAG_LENGTHABLE, ds); | ||||
| 	  value = janet_wrap_nil(); | ||||
| 	} | ||||
| 	break; | ||||
|       } | ||||
|         case JANET_ABSTRACT: | ||||
|             { | ||||
|                 JanetAbstractType *type = (JanetAbstractType *)janet_abstract_type(janet_unwrap_abstract(ds)); | ||||
|                 if (type->get) { | ||||
|                     value = (type->get)(janet_unwrap_abstract(ds),janet_wrap_integer(index)); | ||||
|                 } else { | ||||
|                     janet_panicf("no getter for %T ", JANET_TFLAG_LENGTHABLE, ds); | ||||
|                     value = janet_wrap_nil(); | ||||
|                 } | ||||
|                 break; | ||||
|             } | ||||
|     } | ||||
|     return value; | ||||
| } | ||||
| @@ -350,15 +350,15 @@ void janet_putindex(Janet ds, int32_t index, Janet value) { | ||||
|                 break; | ||||
|             } | ||||
|         case JANET_ABSTRACT: | ||||
| 	  { | ||||
| 	    JanetAbstractType *type = (JanetAbstractType *)janet_abstract_type(janet_unwrap_abstract(ds)); | ||||
| 	    if (type->put) { | ||||
| 	      (type->put)(janet_unwrap_abstract(ds),janet_wrap_integer(index),value); | ||||
| 	    } else { | ||||
| 	      janet_panicf("no setter for %T ", JANET_TFLAG_LENGTHABLE, ds); | ||||
| 	    } | ||||
| 	    break; | ||||
| 	  } | ||||
|             { | ||||
|                 JanetAbstractType *type = (JanetAbstractType *)janet_abstract_type(janet_unwrap_abstract(ds)); | ||||
|                 if (type->put) { | ||||
|                     (type->put)(janet_unwrap_abstract(ds),janet_wrap_integer(index),value); | ||||
|                 } else { | ||||
|                     janet_panicf("no setter for %T ", JANET_TFLAG_LENGTHABLE, ds); | ||||
|                 } | ||||
|                 break; | ||||
|             } | ||||
|     } | ||||
| } | ||||
|  | ||||
| @@ -400,15 +400,14 @@ void janet_put(Janet ds, Janet key, Janet value) { | ||||
|             janet_table_put(janet_unwrap_table(ds), key, value); | ||||
|             break; | ||||
|         case JANET_ABSTRACT: | ||||
| 	  { | ||||
| 	    JanetAbstractType *type = (JanetAbstractType *)janet_abstract_type(janet_unwrap_abstract(ds)); | ||||
| 	    if (type->put) { | ||||
| 	      (type->put)(janet_unwrap_abstract(ds),key,value); | ||||
| 	    } else { | ||||
| 	      janet_panicf("no setter for %T ", JANET_TFLAG_LENGTHABLE, ds); | ||||
| 	    } | ||||
| 	    break; | ||||
| 	  } | ||||
| 	   | ||||
|             { | ||||
|                 JanetAbstractType *type = (JanetAbstractType *)janet_abstract_type(janet_unwrap_abstract(ds)); | ||||
|                 if (type->put) { | ||||
|                     (type->put)(janet_unwrap_abstract(ds),key,value); | ||||
|                 } else { | ||||
|                     janet_panicf("no setter for %T ", JANET_TFLAG_LENGTHABLE, ds); | ||||
|                 } | ||||
|                 break; | ||||
|             } | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -229,7 +229,7 @@ static Janet call_nonfn(JanetFiber *fiber, Janet callee) { | ||||
|     Janet ds, key; | ||||
|     if (argn != 1) janet_panicf("%v called with arity %d, expected 1", callee, argn); | ||||
|     if (janet_checktypes(callee, JANET_TFLAG_INDEXED | JANET_TFLAG_DICTIONARY | | ||||
| 			 JANET_TFLAG_STRING | JANET_TFLAG_BUFFER | JANET_TFLAG_ABSTRACT)) { | ||||
|             JANET_TFLAG_STRING | JANET_TFLAG_BUFFER | JANET_TFLAG_ABSTRACT)) { | ||||
|         ds = callee; | ||||
|         key = fiber->data[fiber->stackstart]; | ||||
|     } else { | ||||
|   | ||||
| @@ -67,7 +67,7 @@ extern "C" { | ||||
| /* Check 64-bit vs 32-bit */ | ||||
| #if ((defined(__x86_64__) || defined(_M_X64)) \ | ||||
|      && (defined(JANET_UNIX) || defined(JANET_WINDOWS))) \ | ||||
| 	|| (defined(_WIN64)) /* Windows 64 bit */ \ | ||||
|     || (defined(_WIN64)) /* Windows 64 bit */ \ | ||||
|     || (defined(__ia64__) && defined(__LP64__)) /* Itanium in LP64 mode */ \ | ||||
|     || defined(__alpha__) /* DEC Alpha */ \ | ||||
|     || (defined(__sparc__) && defined(__arch64__) || defined (__sparcv9)) /* BE */ \ | ||||
|   | ||||
| @@ -8,331 +8,331 @@ | ||||
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||||
| <plist version="1.0"> | ||||
| <dict> | ||||
| 	<key>fileTypes</key> | ||||
| 	<array> | ||||
| 		<string>janet</string> | ||||
| 	</array> | ||||
| 	<key>foldingStartMarker</key> | ||||
| 	<string>\{</string> | ||||
| 	<key>foldingStopMarker</key> | ||||
| 	<string>\}</string> | ||||
| 	<key>foldingStartMarker</key> | ||||
| 	<string>\[</string> | ||||
| 	<key>foldingStopMarker</key> | ||||
| 	<string>\]</string> | ||||
| 	<key>foldingStartMarker</key> | ||||
| 	<string>\(</string> | ||||
| 	<key>foldingStopMarker</key> | ||||
| 	<string>\)</string> | ||||
| 	<key>keyEquivalent</key> | ||||
| 	<string>^~L</string> | ||||
| 	<key>name</key> | ||||
| 	<string>Janet</string> | ||||
| 	<key>patterns</key> | ||||
| 	<array> | ||||
| 		<dict> | ||||
| 			<key>include</key> | ||||
| 			<string>#all</string> | ||||
| 		</dict> | ||||
|   <key>fileTypes</key> | ||||
|   <array> | ||||
|     <string>janet</string> | ||||
|   </array> | ||||
|   <key>foldingStartMarker</key> | ||||
|   <string>\{</string> | ||||
|   <key>foldingStopMarker</key> | ||||
|   <string>\}</string> | ||||
|   <key>foldingStartMarker</key> | ||||
|   <string>\[</string> | ||||
|   <key>foldingStopMarker</key> | ||||
|   <string>\]</string> | ||||
|   <key>foldingStartMarker</key> | ||||
|   <string>\(</string> | ||||
|   <key>foldingStopMarker</key> | ||||
|   <string>\)</string> | ||||
|   <key>keyEquivalent</key> | ||||
|   <string>^~L</string> | ||||
|   <key>name</key> | ||||
|   <string>Janet</string> | ||||
|   <key>patterns</key> | ||||
|   <array> | ||||
|     <dict> | ||||
|       <key>include</key> | ||||
|       <string>#all</string> | ||||
|     </dict> | ||||
|     </array> | ||||
| 	<key>repository</key> | ||||
| 	<dict> | ||||
| 		<key>all</key> | ||||
| 		<dict> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#comment</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#parens</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#brackets</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#braces</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#readermac</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#string</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#longstring</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#literal</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#corelib</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#r-number</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#dec-number</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#hex-number</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#keysym</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#symbol</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<key>comment</key> | ||||
| 		<dict> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.comment.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(#).*$</string> | ||||
| 			<key>name</key> | ||||
| 			<string>comment.line.janet</string> | ||||
| 		</dict> | ||||
| 		<key>braces</key> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>(@?{)</string> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.braces.begin.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>end</key> | ||||
| 			<string>(})</string> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.braces.end.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#all</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<key>brackets</key> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>(@?\[)</string> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.brackets.begin.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>end</key> | ||||
| 			<string>(\])</string> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.brackets.end.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#all</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<key>parens</key> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>(@?\()</string> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.parens.begin.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>end</key> | ||||
| 			<string>(\))</string> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.parens.end.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#all</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<key>readermac</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>[\'\~\;\,]</string> | ||||
| 			<key>name</key> | ||||
| 			<string>punctuation.other.janet</string> | ||||
| 		</dict> | ||||
| 		<!-- string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*]) token match here (?![\.:\w_\-=!@\$%^&?|\\/<>*])</string --> | ||||
| 		<key>literal</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])(true|false|nil)(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
| 			<key>name</key> | ||||
| 			<string>constant.language.janet</string> | ||||
| 		</dict> | ||||
| 		<key>corelib</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
|   <key>repository</key> | ||||
|   <dict> | ||||
|     <key>all</key> | ||||
|     <dict> | ||||
|       <key>patterns</key> | ||||
|       <array> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#comment</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#parens</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#brackets</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#braces</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#readermac</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#string</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#longstring</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#literal</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#corelib</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#r-number</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#dec-number</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#hex-number</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#keysym</string> | ||||
|         </dict> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#symbol</string> | ||||
|         </dict> | ||||
|       </array> | ||||
|     </dict> | ||||
|     <key>comment</key> | ||||
|     <dict> | ||||
|       <key>captures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.comment.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>match</key> | ||||
|       <string>(#).*$</string> | ||||
|       <key>name</key> | ||||
|       <string>comment.line.janet</string> | ||||
|     </dict> | ||||
|     <key>braces</key> | ||||
|     <dict> | ||||
|       <key>begin</key> | ||||
|       <string>(@?{)</string> | ||||
|       <key>captures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.braces.begin.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>end</key> | ||||
|       <string>(})</string> | ||||
|       <key>captures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.braces.end.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>patterns</key> | ||||
|       <array> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#all</string> | ||||
|         </dict> | ||||
|       </array> | ||||
|     </dict> | ||||
|     <key>brackets</key> | ||||
|     <dict> | ||||
|       <key>begin</key> | ||||
|       <string>(@?\[)</string> | ||||
|       <key>captures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.brackets.begin.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>end</key> | ||||
|       <string>(\])</string> | ||||
|       <key>captures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.brackets.end.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>patterns</key> | ||||
|       <array> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#all</string> | ||||
|         </dict> | ||||
|       </array> | ||||
|     </dict> | ||||
|     <key>parens</key> | ||||
|     <dict> | ||||
|       <key>begin</key> | ||||
|       <string>(@?\()</string> | ||||
|       <key>captures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.parens.begin.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>end</key> | ||||
|       <string>(\))</string> | ||||
|       <key>captures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.parens.end.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>patterns</key> | ||||
|       <array> | ||||
|         <dict> | ||||
|           <key>include</key> | ||||
|           <string>#all</string> | ||||
|         </dict> | ||||
|       </array> | ||||
|     </dict> | ||||
|     <key>readermac</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|       <string>[\'\~\;\,]</string> | ||||
|       <key>name</key> | ||||
|       <string>punctuation.other.janet</string> | ||||
|     </dict> | ||||
|     <!-- string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*]) token match here (?![\.:\w_\-=!@\$%^&?|\\/<>*])</string --> | ||||
|     <key>literal</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|       <string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])(true|false|nil)(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
|       <key>name</key> | ||||
|       <string>constant.language.janet</string> | ||||
|     </dict> | ||||
|     <key>corelib</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|             <string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])(%ALLSYMBOLS%)(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
| 			<key>name</key> | ||||
| 			<string>keyword.control.janet</string> | ||||
| 		</dict> | ||||
| 		<key>keysym</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*]):[\.:\w_\-=!@\$%^&?|\\/<>*]*</string> | ||||
| 			<key>name</key> | ||||
| 			<string>constant.keyword.janet</string> | ||||
| 		</dict> | ||||
| 		<key>symbol</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])[\.a-zA-Z_\-=!@\$%^&?|\\/<>*][\.:\w_\-=!@\$%^&?|\\/<>*]*</string> | ||||
| 			<key>name</key> | ||||
| 			<string>variable.other.janet</string> | ||||
| 		</dict> | ||||
| 		<key>hex-number</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])[-+]?0x([_\da-fA-F]+|[_\da-fA-F]+\.[_\da-fA-F]*|\.[_\da-fA-F]+)(&[+-]?[\da-fA-F]+)?(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
| 			<key>name</key> | ||||
| 			<string>constant.numeric.hex.janet</string> | ||||
| 		</dict> | ||||
| 		<key>dec-number</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])[-+]?([_\d]+|[_\d]+\.[_\d]*|\.[_\d]+)([eE&][+-]?[\d]+)?(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
| 			<key>name</key> | ||||
| 			<string>constant.numeric.decimal.janet</string> | ||||
| 		</dict> | ||||
| 		<key>r-number</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])[-+]?\d\d?r([_\w]+|[_\w]+\.[_\w]*|\.[_\w]+)(&[+-]?[\w]+)?(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
| 			<key>name</key> | ||||
| 			<string>constant.numeric.decimal.janet</string> | ||||
| 		</dict> | ||||
| 		<key>string</key> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>(@?")</string> | ||||
| 			<key>beginCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.string.begin.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>end</key> | ||||
| 			<string>(")</string> | ||||
| 			<key>endCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.string.end.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>name</key> | ||||
| 			<string>string.quoted.double.janet</string> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>match</key> | ||||
| 					<string>(\\[ne0zft"\\']|\\x[0-9a-fA-F][0-9a-fA-f])</string> | ||||
| 					<key>name</key> | ||||
| 					<string>constant.character.escape.janet</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<key>longstring</key> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>(@?)(`+)</string> | ||||
| 			<key>beginCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.string.begin.janet</string> | ||||
| 				</dict> | ||||
| 				<key>2</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.string.begin.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>end</key> | ||||
| 			<string>\2</string> | ||||
| 			<key>endCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.definition.string.end.janet</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>name</key> | ||||
| 			<string>string.quoted.triple.janet</string> | ||||
| 		</dict> | ||||
| 		<key>nomatch</key> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>\S+</string> | ||||
| 			<key>name</key> | ||||
| 			<string>invalid.illegal.janet</string> | ||||
| 		</dict> | ||||
| 	</dict> | ||||
|       <key>name</key> | ||||
|       <string>keyword.control.janet</string> | ||||
|     </dict> | ||||
|     <key>keysym</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|       <string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*]):[\.:\w_\-=!@\$%^&?|\\/<>*]*</string> | ||||
|       <key>name</key> | ||||
|       <string>constant.keyword.janet</string> | ||||
|     </dict> | ||||
|     <key>symbol</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|       <string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])[\.a-zA-Z_\-=!@\$%^&?|\\/<>*][\.:\w_\-=!@\$%^&?|\\/<>*]*</string> | ||||
|       <key>name</key> | ||||
|       <string>variable.other.janet</string> | ||||
|     </dict> | ||||
|     <key>hex-number</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|       <string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])[-+]?0x([_\da-fA-F]+|[_\da-fA-F]+\.[_\da-fA-F]*|\.[_\da-fA-F]+)(&[+-]?[\da-fA-F]+)?(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
|       <key>name</key> | ||||
|       <string>constant.numeric.hex.janet</string> | ||||
|     </dict> | ||||
|     <key>dec-number</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|       <string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])[-+]?([_\d]+|[_\d]+\.[_\d]*|\.[_\d]+)([eE&][+-]?[\d]+)?(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
|       <key>name</key> | ||||
|       <string>constant.numeric.decimal.janet</string> | ||||
|     </dict> | ||||
|     <key>r-number</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|       <string>(?<![\.:\w_\-=!@\$%^&?|\\/<>*])[-+]?\d\d?r([_\w]+|[_\w]+\.[_\w]*|\.[_\w]+)(&[+-]?[\w]+)?(?![\.:\w_\-=!@\$%^&?|\\/<>*])</string> | ||||
|       <key>name</key> | ||||
|       <string>constant.numeric.decimal.janet</string> | ||||
|     </dict> | ||||
|     <key>string</key> | ||||
|     <dict> | ||||
|       <key>begin</key> | ||||
|       <string>(@?")</string> | ||||
|       <key>beginCaptures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.string.begin.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>end</key> | ||||
|       <string>(")</string> | ||||
|       <key>endCaptures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.string.end.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>name</key> | ||||
|       <string>string.quoted.double.janet</string> | ||||
|       <key>patterns</key> | ||||
|       <array> | ||||
|         <dict> | ||||
|           <key>match</key> | ||||
|           <string>(\\[ne0zft"\\']|\\x[0-9a-fA-F][0-9a-fA-f])</string> | ||||
|           <key>name</key> | ||||
|           <string>constant.character.escape.janet</string> | ||||
|         </dict> | ||||
|       </array> | ||||
|     </dict> | ||||
|     <key>longstring</key> | ||||
|     <dict> | ||||
|       <key>begin</key> | ||||
|       <string>(@?)(`+)</string> | ||||
|       <key>beginCaptures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.string.begin.janet</string> | ||||
|         </dict> | ||||
|         <key>2</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.string.begin.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>end</key> | ||||
|       <string>\2</string> | ||||
|       <key>endCaptures</key> | ||||
|       <dict> | ||||
|         <key>1</key> | ||||
|         <dict> | ||||
|           <key>name</key> | ||||
|           <string>punctuation.definition.string.end.janet</string> | ||||
|         </dict> | ||||
|       </dict> | ||||
|       <key>name</key> | ||||
|       <string>string.quoted.triple.janet</string> | ||||
|     </dict> | ||||
|     <key>nomatch</key> | ||||
|     <dict> | ||||
|       <key>match</key> | ||||
|       <string>\S+</string> | ||||
|       <key>name</key> | ||||
|       <string>invalid.illegal.janet</string> | ||||
|     </dict> | ||||
|   </dict> | ||||
|     <key>scopeName</key> | ||||
|     <string>source.janet</string> | ||||
|     <key>uuid</key> | ||||
|   | ||||
							
								
								
									
										108
									
								
								tools/xxd.c
									
									
									
									
									
								
							
							
						
						
									
										108
									
								
								tools/xxd.c
									
									
									
									
									
								
							| @@ -33,72 +33,72 @@ | ||||
|  | ||||
| int main(int argc, const char **argv) { | ||||
|  | ||||
| 	static const char hex[] = "0123456789ABCDEF"; | ||||
| 	char buf[BUFSIZE]; | ||||
| 	size_t bytesRead = 0; | ||||
| 	int32_t totalRead = 0; | ||||
| 	int lineIndex = 0; | ||||
| 	int line = 0; | ||||
|     static const char hex[] = "0123456789ABCDEF"; | ||||
|     char buf[BUFSIZE]; | ||||
|     size_t bytesRead = 0; | ||||
|     int32_t totalRead = 0; | ||||
|     int lineIndex = 0; | ||||
|     int line = 0; | ||||
|  | ||||
| 	if (argc != 4) { | ||||
| 		fprintf(stderr, "Usage: %s infile outfile symbol\n", argv[0]); | ||||
| 		return 1; | ||||
| 	} | ||||
|     if (argc != 4) { | ||||
|         fprintf(stderr, "Usage: %s infile outfile symbol\n", argv[0]); | ||||
|         return 1; | ||||
|     } | ||||
|  | ||||
| 	/* Open the files */ | ||||
| 	FILE *in = fopen(argv[1], "rb"); | ||||
| 	FILE *out = fopen(argv[2], "wb"); | ||||
|     /* Open the files */ | ||||
|     FILE *in = fopen(argv[1], "rb"); | ||||
|     FILE *out = fopen(argv[2], "wb"); | ||||
|  | ||||
| 	/* Check if files open successfully */ | ||||
| 	if (in == NULL) { | ||||
| 		fprintf(stderr, "Could not open input file %s\n", argv[1]); | ||||
| 		return 1; | ||||
| 	} else if (out == NULL) { | ||||
| 		fprintf(stderr, "Could not open output file %s\n", argv[2]); | ||||
| 		return 1; | ||||
| 	} | ||||
|     /* Check if files open successfully */ | ||||
|     if (in == NULL) { | ||||
|         fprintf(stderr, "Could not open input file %s\n", argv[1]); | ||||
|         return 1; | ||||
|     } else if (out == NULL) { | ||||
|         fprintf(stderr, "Could not open output file %s\n", argv[2]); | ||||
|         return 1; | ||||
|     } | ||||
|  | ||||
| 	/* Write the header */ | ||||
| 	fprintf(out, "/* Auto generated - DO NOT EDIT */\n\n#include <stdint.h>\n\n"); | ||||
| 	fprintf(out, "static const unsigned char bytes_%s[] = {", argv[3]); | ||||
|     /* Write the header */ | ||||
|     fprintf(out, "/* Auto generated - DO NOT EDIT */\n\n#include <stdint.h>\n\n"); | ||||
|     fprintf(out, "static const unsigned char bytes_%s[] = {", argv[3]); | ||||
|  | ||||
| 	/* Read in chunks from buffer */ | ||||
| 	while ((bytesRead = fread(buf, 1, sizeof(buf), in)) > 0) { | ||||
| 		size_t i; | ||||
| 		totalRead += bytesRead; | ||||
| 		for (i = 0; i < bytesRead; ++i) { | ||||
| 			int byte = ((uint8_t *)buf) [i]; | ||||
|     /* Read in chunks from buffer */ | ||||
|     while ((bytesRead = fread(buf, 1, sizeof(buf), in)) > 0) { | ||||
|         size_t i; | ||||
|         totalRead += bytesRead; | ||||
|         for (i = 0; i < bytesRead; ++i) { | ||||
|             int byte = ((uint8_t *)buf) [i]; | ||||
|  | ||||
| 			/* Write the byte */ | ||||
| 			if (lineIndex++ == 0) { | ||||
| 				if (line++) | ||||
| 					fputc(',', out); | ||||
| 				fputs("\n\t", out); | ||||
| 			} else { | ||||
| 				fputs(", ", out); | ||||
| 			} | ||||
| 			fputs("0x", out); | ||||
| 			fputc(hex[byte >> 4], out); | ||||
| 			fputc(hex[byte & 0xF], out); | ||||
|             /* Write the byte */ | ||||
|             if (lineIndex++ == 0) { | ||||
|                 if (line++) | ||||
|                     fputc(',', out); | ||||
|                 fputs("\n\t", out); | ||||
|             } else { | ||||
|                 fputs(", ", out); | ||||
|             } | ||||
|             fputs("0x", out); | ||||
|             fputc(hex[byte >> 4], out); | ||||
|             fputc(hex[byte & 0xF], out); | ||||
|  | ||||
| 			/* Make line index wrap */ | ||||
| 			if (lineIndex >= PERLINE) | ||||
| 				lineIndex = 0; | ||||
|             /* Make line index wrap */ | ||||
|             if (lineIndex >= PERLINE) | ||||
|                 lineIndex = 0; | ||||
|  | ||||
| 		} | ||||
|   	} | ||||
|         } | ||||
|       } | ||||
|  | ||||
|   	/* Write the tail */ | ||||
| 	fputs("\n};\n\n", out); | ||||
|       /* Write the tail */ | ||||
|     fputs("\n};\n\n", out); | ||||
|  | ||||
| 	fprintf(out, "const unsigned char *%s = bytes_%s;\n\n", argv[3], argv[3]); | ||||
|     fprintf(out, "const unsigned char *%s = bytes_%s;\n\n", argv[3], argv[3]); | ||||
|  | ||||
|     /* Write chunk size */ | ||||
| 	fprintf(out, "int32_t %s_size = %d;\n", argv[3], totalRead); | ||||
|     fprintf(out, "int32_t %s_size = %d;\n", argv[3], totalRead); | ||||
|  | ||||
| 	/* Close the file handles */ | ||||
| 	fclose(in); | ||||
| 	fclose(out); | ||||
|     /* Close the file handles */ | ||||
|     fclose(in); | ||||
|     fclose(out); | ||||
|  | ||||
| 	return 0; | ||||
|     return 0; | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Calvin Rose
					Calvin Rose