This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public virtual void AddCharToLexer(int c) | |
| { | |
| if (c >= 0xD800 && c <= 0xDBFF) | |
| { | |
| int c2 = this.input.ReadChar(); | |
| if (c2 >= 0xDC00 && c2 <= 0xDFFF) | |
| { | |
| c = ((c - 0xD800) * 0x400) + (c2 - 0xDC00) + 0x10000; | |
| } | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { FormsModule } from '@angular/forms'; | |
| import { NgModule } from '@angular/core'; | |
| import { CommonModule } from '@angular/common'; | |
| import { | |
| MatCardModule, | |
| MatAutocompleteModule, | |
| MatButtonModule, | |
| MatBadgeModule, | |
| MatBottomSheetModule, | |
| MatButtonToggleModule, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| open FSharp.Data | |
| open System | |
| open OfficeOpenXml | |
| open System.IO | |
| open OfficeOpenXml.FormulaParsing.Excel.Functions.Math | |
| open Polly | |
| open System.Net | |
| type HomePage = HtmlProvider<"./Samples/Home.html"> | |
| type Products = JsonProvider<"./Samples/Products.json"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| open System | |
| open System.IO | |
| type IISLogItem = { | |
| date :DateTime; | |
| time :DateTime; | |
| ``s-ip`` :string; | |
| ``cs-method`` :string; | |
| ``cs-uri-stem`` :string; | |
| ``cs-uri-query`` :string; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| namespace MyLL1 | |
| { | |
| public interface IRule | |
| { | |
| string Name { get; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| namespace MyLexer | |
| { | |
| public class TokenDefinition | |
| { | |
| public string Name { get; set; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required(VERSION 3.0) | |
| project(directxtk) | |
| add_library(directxtk | |
| Src/AlphaTestEffect.cpp | |
| Src/BasicEffect.cpp | |
| Src/BinaryReader.cpp | |
| Src/CommonStates.cpp | |
| Src/DDSTextureLoader.cpp | |
| Src/DGSLEffect.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // DeviceResources.h - A wrapper for the Direct3D 11 device and swapchain | |
| // | |
| #pragma once | |
| namespace DX | |
| { | |
| // Provides an interface for an application that owns DeviceResources to be notified of the device being lost or created. | |
| interface IDeviceNotify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using System.Drawing.Imaging; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Newtonsoft.Json.Linq; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net.Sockets; | |
| using System.Text; | |
| using System.Threading.Tasks; |